blob: e0c1206a44fabf13556f48665f85c4a4650bd78e [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 */
David S. Miller9cc3a1a2006-02-21 20:51:13 -080078
David S. Millerd1acb422007-03-16 17:20:28 -070079#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Miller4f93d212012-09-06 18:13:58 -070080/* A special kernel TSB for 4MB, 256MB, 2GB and 16GB linear mappings.
81 * Space is allocated for this right after the trap table in
82 * arch/sparc64/kernel/head.S
David S. Miller2d9e2762007-05-29 01:58:31 -070083 */
84extern struct tsb swapper_4m_tsb[KERNEL_TSB4M_NENTRIES];
David S. Millerd1acb422007-03-16 17:20:28 -070085#endif
David S. Miller0dd5b7b2014-09-24 20:56:11 -070086extern struct tsb swapper_tsb[KERNEL_TSB_NENTRIES];
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. Millerd1112012006-03-08 02:16:07 -0800168/* Kernel physical address base and size in bytes. */
David S. Miller1ac4f5e2005-09-21 21:49:32 -0700169unsigned long kern_base __read_mostly;
170unsigned long kern_size __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/* Initial ramdisk setup */
173extern unsigned long sparc_ramdisk_image64;
174extern unsigned int sparc_ramdisk_image;
175extern unsigned int sparc_ramdisk_size;
176
David S. Miller1ac4f5e2005-09-21 21:49:32 -0700177struct page *mem_map_zero __read_mostly;
Aneesh Kumar K.V35802c02008-04-29 08:11:12 -0400178EXPORT_SYMBOL(mem_map_zero);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
David S. Miller0835ae02005-10-04 15:23:20 -0700180unsigned int sparc64_highest_unlocked_tlb_ent __read_mostly;
181
182unsigned long sparc64_kern_pri_context __read_mostly;
183unsigned long sparc64_kern_pri_nuc_bits __read_mostly;
184unsigned long sparc64_kern_sec_context __read_mostly;
185
David S. Miller64658742008-03-21 17:01:38 -0700186int num_kernel_image_mappings;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188#ifdef CONFIG_DEBUG_DCFLUSH
189atomic_t dcpage_flushes = ATOMIC_INIT(0);
190#ifdef CONFIG_SMP
191atomic_t dcpage_flushes_xcall = ATOMIC_INIT(0);
192#endif
193#endif
194
David S. Miller7a591cf2006-02-26 19:44:50 -0800195inline void flush_dcache_page_impl(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
David S. Miller7a591cf2006-02-26 19:44:50 -0800197 BUG_ON(tlb_type == hypervisor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198#ifdef CONFIG_DEBUG_DCFLUSH
199 atomic_inc(&dcpage_flushes);
200#endif
201
202#ifdef DCACHE_ALIASING_POSSIBLE
203 __flush_dcache_page(page_address(page),
204 ((tlb_type == spitfire) &&
205 page_mapping(page) != NULL));
206#else
207 if (page_mapping(page) != NULL &&
208 tlb_type == spitfire)
209 __flush_icache_page(__pa(page_address(page)));
210#endif
211}
212
213#define PG_dcache_dirty PG_arch_1
David S. Miller22adb352007-05-26 01:14:43 -0700214#define PG_dcache_cpu_shift 32UL
215#define PG_dcache_cpu_mask \
216 ((1UL<<ilog2(roundup_pow_of_two(NR_CPUS)))-1UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218#define dcache_dirty_cpu(page) \
David S. Miller48b0e542005-07-27 16:08:44 -0700219 (((page)->flags >> PG_dcache_cpu_shift) & PG_dcache_cpu_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
David S. Millerd979f172007-10-27 00:13:04 -0700221static inline void set_dcache_dirty(struct page *page, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 unsigned long mask = this_cpu;
David S. Miller48b0e542005-07-27 16:08:44 -0700224 unsigned long non_cpu_bits;
225
226 non_cpu_bits = ~(PG_dcache_cpu_mask << PG_dcache_cpu_shift);
227 mask = (mask << PG_dcache_cpu_shift) | (1UL << PG_dcache_dirty);
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 __asm__ __volatile__("1:\n\t"
230 "ldx [%2], %%g7\n\t"
231 "and %%g7, %1, %%g1\n\t"
232 "or %%g1, %0, %%g1\n\t"
233 "casx [%2], %%g7, %%g1\n\t"
234 "cmp %%g7, %%g1\n\t"
235 "bne,pn %%xcc, 1b\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700236 " nop"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 : /* no outputs */
238 : "r" (mask), "r" (non_cpu_bits), "r" (&page->flags)
239 : "g1", "g7");
240}
241
David S. Millerd979f172007-10-27 00:13:04 -0700242static inline void clear_dcache_dirty_cpu(struct page *page, unsigned long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 unsigned long mask = (1UL << PG_dcache_dirty);
245
246 __asm__ __volatile__("! test_and_clear_dcache_dirty\n"
247 "1:\n\t"
248 "ldx [%2], %%g7\n\t"
David S. Miller48b0e542005-07-27 16:08:44 -0700249 "srlx %%g7, %4, %%g1\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 "and %%g1, %3, %%g1\n\t"
251 "cmp %%g1, %0\n\t"
252 "bne,pn %%icc, 2f\n\t"
253 " andn %%g7, %1, %%g1\n\t"
254 "casx [%2], %%g7, %%g1\n\t"
255 "cmp %%g7, %%g1\n\t"
256 "bne,pn %%xcc, 1b\n\t"
David S. Millerb445e262005-06-27 15:42:04 -0700257 " nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 "2:"
259 : /* no outputs */
260 : "r" (cpu), "r" (mask), "r" (&page->flags),
David S. Miller48b0e542005-07-27 16:08:44 -0700261 "i" (PG_dcache_cpu_mask),
262 "i" (PG_dcache_cpu_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 : "g1", "g7");
264}
265
David S. Miller517af332006-02-01 15:55:21 -0800266static inline void tsb_insert(struct tsb *ent, unsigned long tag, unsigned long pte)
267{
268 unsigned long tsb_addr = (unsigned long) ent;
269
David S. Miller3b3ab2e2006-02-17 09:54:42 -0800270 if (tlb_type == cheetah_plus || tlb_type == hypervisor)
David S. Miller517af332006-02-01 15:55:21 -0800271 tsb_addr = __pa(tsb_addr);
272
273 __tsb_insert(tsb_addr, tag, pte);
274}
275
David S. Millerc4bce902006-02-11 21:57:54 -0800276unsigned long _PAGE_ALL_SZ_BITS __read_mostly;
David S. Millerc4bce902006-02-11 21:57:54 -0800277
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800278static void flush_dcache(unsigned long pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800280 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800282 page = pfn_to_page(pfn);
David S. Miller1a78ced2009-10-12 03:20:57 -0700283 if (page) {
David S. Miller7a591cf2006-02-26 19:44:50 -0800284 unsigned long pg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800286 pg_flags = page->flags;
287 if (pg_flags & (1UL << PG_dcache_dirty)) {
David S. Miller7a591cf2006-02-26 19:44:50 -0800288 int cpu = ((pg_flags >> PG_dcache_cpu_shift) &
289 PG_dcache_cpu_mask);
290 int this_cpu = get_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
David S. Miller7a591cf2006-02-26 19:44:50 -0800292 /* This is just to optimize away some function calls
293 * in the SMP case.
294 */
295 if (cpu == this_cpu)
296 flush_dcache_page_impl(page);
297 else
298 smp_flush_dcache_page_impl(page, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
David S. Miller7a591cf2006-02-26 19:44:50 -0800300 clear_dcache_dirty_cpu(page, cpu);
301
302 put_cpu();
303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800305}
306
David Miller9e695d22012-10-08 16:34:29 -0700307/* mm->context.lock must be held */
308static void __update_mmu_tsb_insert(struct mm_struct *mm, unsigned long tsb_index,
309 unsigned long tsb_hash_shift, unsigned long address,
310 unsigned long tte)
311{
312 struct tsb *tsb = mm->context.tsb_block[tsb_index].tsb;
313 unsigned long tag;
314
David S. Millerbcd896b2013-02-19 13:20:08 -0800315 if (unlikely(!tsb))
316 return;
317
David Miller9e695d22012-10-08 16:34:29 -0700318 tsb += ((address >> tsb_hash_shift) &
319 (mm->context.tsb_block[tsb_index].tsb_nentries - 1UL));
320 tag = (address >> 22UL);
321 tsb_insert(tsb, tag, tte);
322}
323
David S. Millerbcd896b2013-02-19 13:20:08 -0800324#if defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE)
325static inline bool is_hugetlb_pte(pte_t pte)
326{
327 if ((tlb_type == hypervisor &&
328 (pte_val(pte) & _PAGE_SZALL_4V) == _PAGE_SZHUGE_4V) ||
329 (tlb_type != hypervisor &&
330 (pte_val(pte) & _PAGE_SZALL_4U) == _PAGE_SZHUGE_4U))
331 return true;
332 return false;
333}
334#endif
335
Russell King4b3073e2009-12-18 16:40:18 +0000336void update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t *ptep)
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800337{
338 struct mm_struct *mm;
David S. Millerbcd896b2013-02-19 13:20:08 -0800339 unsigned long flags;
Russell King4b3073e2009-12-18 16:40:18 +0000340 pte_t pte = *ptep;
Sam Ravnborgff9aefb2009-01-06 12:51:26 -0800341
342 if (tlb_type != hypervisor) {
343 unsigned long pfn = pte_pfn(pte);
344
345 if (pfn_valid(pfn))
346 flush_dcache(pfn);
347 }
David S. Millerbd407912006-01-31 18:31:38 -0800348
349 mm = vma->vm_mm;
David S. Miller7a1ac522006-03-16 02:02:32 -0800350
David S. Miller18f38132014-08-04 16:34:01 -0700351 /* Don't insert a non-valid PTE into the TSB, we'll deadlock. */
352 if (!pte_accessible(mm, pte))
353 return;
354
David S. Miller7a1ac522006-03-16 02:02:32 -0800355 spin_lock_irqsave(&mm->context.lock, flags);
356
David Miller9e695d22012-10-08 16:34:29 -0700357#if defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE)
David S. Millerbcd896b2013-02-19 13:20:08 -0800358 if (mm->context.huge_pte_count && is_hugetlb_pte(pte))
David S. Miller37b3a8f2013-09-25 13:48:49 -0700359 __update_mmu_tsb_insert(mm, MM_TSB_HUGE, REAL_HPAGE_SHIFT,
David S. Millerbcd896b2013-02-19 13:20:08 -0800360 address, pte_val(pte));
361 else
David S. Millerdcc1e8d2006-03-22 00:49:59 -0800362#endif
David S. Millerbcd896b2013-02-19 13:20:08 -0800363 __update_mmu_tsb_insert(mm, MM_TSB_BASE, PAGE_SHIFT,
364 address, pte_val(pte));
David S. Miller7a1ac522006-03-16 02:02:32 -0800365
366 spin_unlock_irqrestore(&mm->context.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
369void flush_dcache_page(struct page *page)
370{
David S. Millera9546f52005-04-17 18:03:09 -0700371 struct address_space *mapping;
372 int this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
David S. Miller7a591cf2006-02-26 19:44:50 -0800374 if (tlb_type == hypervisor)
375 return;
376
David S. Millera9546f52005-04-17 18:03:09 -0700377 /* Do not bother with the expensive D-cache flush if it
378 * is merely the zero page. The 'bigcore' testcase in GDB
379 * causes this case to run millions of times.
380 */
381 if (page == ZERO_PAGE(0))
382 return;
383
384 this_cpu = get_cpu();
385
386 mapping = page_mapping(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (mapping && !mapping_mapped(mapping)) {
David S. Millera9546f52005-04-17 18:03:09 -0700388 int dirty = test_bit(PG_dcache_dirty, &page->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (dirty) {
David S. Millera9546f52005-04-17 18:03:09 -0700390 int dirty_cpu = dcache_dirty_cpu(page);
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (dirty_cpu == this_cpu)
393 goto out;
394 smp_flush_dcache_page_impl(page, dirty_cpu);
395 }
396 set_dcache_dirty(page, this_cpu);
397 } else {
398 /* We could delay the flush for the !page_mapping
399 * case too. But that case is for exec env/arg
400 * pages and those are %99 certainly going to get
401 * faulted into the tlb (and thus flushed) anyways.
402 */
403 flush_dcache_page_impl(page);
404 }
405
406out:
407 put_cpu();
408}
Sam Ravnborg917c3662009-01-08 16:58:20 -0800409EXPORT_SYMBOL(flush_dcache_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Prasanna S Panchamukhi05e14cb2005-09-06 15:19:30 -0700411void __kprobes flush_icache_range(unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
David S. Millera43fe0e2006-02-04 03:10:53 -0800413 /* Cheetah and Hypervisor platform cpus have coherent I-cache. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (tlb_type == spitfire) {
415 unsigned long kaddr;
416
David S. Millera94aa252007-03-15 15:50:11 -0700417 /* This code only runs on Spitfire cpus so this is
418 * why we can assume _PAGE_PADDR_4U.
419 */
420 for (kaddr = start; kaddr < end; kaddr += PAGE_SIZE) {
421 unsigned long paddr, mask = _PAGE_PADDR_4U;
422
423 if (kaddr >= PAGE_OFFSET)
424 paddr = kaddr & mask;
425 else {
426 pgd_t *pgdp = pgd_offset_k(kaddr);
427 pud_t *pudp = pud_offset(pgdp, kaddr);
428 pmd_t *pmdp = pmd_offset(pudp, kaddr);
429 pte_t *ptep = pte_offset_kernel(pmdp, kaddr);
430
431 paddr = pte_val(*ptep) & mask;
432 }
433 __flush_icache_page(paddr);
434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436}
Sam Ravnborg917c3662009-01-08 16:58:20 -0800437EXPORT_SYMBOL(flush_icache_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439void mmu_info(struct seq_file *m)
440{
David S. Millerce33fdc2012-09-06 19:01:25 -0700441 static const char *pgsz_strings[] = {
442 "8K", "64K", "512K", "4MB", "32MB",
443 "256MB", "2GB", "16GB",
444 };
445 int i, printed;
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (tlb_type == cheetah)
448 seq_printf(m, "MMU Type\t: Cheetah\n");
449 else if (tlb_type == cheetah_plus)
450 seq_printf(m, "MMU Type\t: Cheetah+\n");
451 else if (tlb_type == spitfire)
452 seq_printf(m, "MMU Type\t: Spitfire\n");
David S. Millera43fe0e2006-02-04 03:10:53 -0800453 else if (tlb_type == hypervisor)
454 seq_printf(m, "MMU Type\t: Hypervisor (sun4v)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 else
456 seq_printf(m, "MMU Type\t: ???\n");
457
David S. Millerce33fdc2012-09-06 19:01:25 -0700458 seq_printf(m, "MMU PGSZs\t: ");
459 printed = 0;
460 for (i = 0; i < ARRAY_SIZE(pgsz_strings); i++) {
461 if (cpu_pgsz_mask & (1UL << i)) {
462 seq_printf(m, "%s%s",
463 printed ? "," : "", pgsz_strings[i]);
464 printed++;
465 }
466 }
467 seq_putc(m, '\n');
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469#ifdef CONFIG_DEBUG_DCFLUSH
470 seq_printf(m, "DCPageFlushes\t: %d\n",
471 atomic_read(&dcpage_flushes));
472#ifdef CONFIG_SMP
473 seq_printf(m, "DCPageFlushesXC\t: %d\n",
474 atomic_read(&dcpage_flushes_xcall));
475#endif /* CONFIG_SMP */
476#endif /* CONFIG_DEBUG_DCFLUSH */
477}
478
David S. Millera94aa252007-03-15 15:50:11 -0700479struct linux_prom_translation prom_trans[512] __read_mostly;
480unsigned int prom_trans_ents __read_mostly;
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482unsigned long kern_locked_tte_data;
483
David S. Miller405599b2005-09-22 00:12:35 -0700484/* The obp translations are saved based on 8k pagesize, since obp can
485 * use a mixture of pagesizes. Misses to the LOW_OBP_ADDRESS ->
David S. Miller74bf4312006-01-31 18:29:18 -0800486 * HI_OBP_ADDRESS range are handled in ktlb.S.
David S. Miller405599b2005-09-22 00:12:35 -0700487 */
David S. Miller5085b4a2005-09-22 00:45:41 -0700488static inline int in_obp_range(unsigned long vaddr)
489{
490 return (vaddr >= LOW_OBP_ADDRESS &&
491 vaddr < HI_OBP_ADDRESS);
492}
493
David S. Millerc9c10832005-10-12 12:22:46 -0700494static int cmp_ptrans(const void *a, const void *b)
David S. Miller405599b2005-09-22 00:12:35 -0700495{
David S. Millerc9c10832005-10-12 12:22:46 -0700496 const struct linux_prom_translation *x = a, *y = b;
David S. Miller405599b2005-09-22 00:12:35 -0700497
David S. Millerc9c10832005-10-12 12:22:46 -0700498 if (x->virt > y->virt)
499 return 1;
500 if (x->virt < y->virt)
501 return -1;
502 return 0;
David S. Miller405599b2005-09-22 00:12:35 -0700503}
504
David S. Millerc9c10832005-10-12 12:22:46 -0700505/* Read OBP translations property into 'prom_trans[]'. */
David S. Miller9ad98c52005-10-05 15:12:00 -0700506static void __init read_obp_translations(void)
David S. Miller405599b2005-09-22 00:12:35 -0700507{
David S. Millerc9c10832005-10-12 12:22:46 -0700508 int n, node, ents, first, last, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 node = prom_finddevice("/virtual-memory");
511 n = prom_getproplen(node, "translations");
David S. Miller405599b2005-09-22 00:12:35 -0700512 if (unlikely(n == 0 || n == -1)) {
David S. Millerb206fc42005-09-21 22:31:13 -0700513 prom_printf("prom_mappings: Couldn't get size.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 prom_halt();
515 }
David S. Miller405599b2005-09-22 00:12:35 -0700516 if (unlikely(n > sizeof(prom_trans))) {
Akinobu Mita5da444a2012-09-29 03:14:49 +0000517 prom_printf("prom_mappings: Size %d is too big.\n", n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 prom_halt();
519 }
David S. Miller405599b2005-09-22 00:12:35 -0700520
David S. Millerb206fc42005-09-21 22:31:13 -0700521 if ((n = prom_getproperty(node, "translations",
David S. Miller405599b2005-09-22 00:12:35 -0700522 (char *)&prom_trans[0],
523 sizeof(prom_trans))) == -1) {
David S. Millerb206fc42005-09-21 22:31:13 -0700524 prom_printf("prom_mappings: Couldn't get property.\n");
525 prom_halt();
526 }
David S. Miller9ad98c52005-10-05 15:12:00 -0700527
David S. Millerb206fc42005-09-21 22:31:13 -0700528 n = n / sizeof(struct linux_prom_translation);
David S. Miller9ad98c52005-10-05 15:12:00 -0700529
David S. Millerc9c10832005-10-12 12:22:46 -0700530 ents = n;
531
532 sort(prom_trans, ents, sizeof(struct linux_prom_translation),
533 cmp_ptrans, NULL);
534
535 /* Now kick out all the non-OBP entries. */
536 for (i = 0; i < ents; i++) {
537 if (in_obp_range(prom_trans[i].virt))
538 break;
539 }
540 first = i;
541 for (; i < ents; i++) {
542 if (!in_obp_range(prom_trans[i].virt))
543 break;
544 }
545 last = i;
546
547 for (i = 0; i < (last - first); i++) {
548 struct linux_prom_translation *src = &prom_trans[i + first];
549 struct linux_prom_translation *dest = &prom_trans[i];
550
551 *dest = *src;
552 }
553 for (; i < ents; i++) {
554 struct linux_prom_translation *dest = &prom_trans[i];
555 dest->virt = dest->size = dest->data = 0x0UL;
556 }
557
558 prom_trans_ents = last - first;
559
560 if (tlb_type == spitfire) {
561 /* Clear diag TTE bits. */
562 for (i = 0; i < prom_trans_ents; i++)
563 prom_trans[i].data &= ~0x0003fe0000000000UL;
564 }
David S. Millerf4142cb2011-09-29 12:18:59 -0700565
566 /* Force execute bit on. */
567 for (i = 0; i < prom_trans_ents; i++)
568 prom_trans[i].data |= (tlb_type == hypervisor ?
569 _PAGE_EXEC_4V : _PAGE_EXEC_4U);
David S. Miller405599b2005-09-22 00:12:35 -0700570}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
David S. Millerd82ace72006-02-09 02:52:44 -0800572static void __init hypervisor_tlb_lock(unsigned long vaddr,
573 unsigned long pte,
574 unsigned long mmu)
575{
David S. Miller7db35f32007-05-29 02:22:14 -0700576 unsigned long ret = sun4v_mmu_map_perm_addr(vaddr, 0, pte, mmu);
David S. Millerd82ace72006-02-09 02:52:44 -0800577
David S. Miller7db35f32007-05-29 02:22:14 -0700578 if (ret != 0) {
Akinobu Mita5da444a2012-09-29 03:14:49 +0000579 prom_printf("hypervisor_tlb_lock[%lx:%x:%lx:%lx]: "
David S. Miller7db35f32007-05-29 02:22:14 -0700580 "errors with %lx\n", vaddr, 0, pte, mmu, ret);
David S. Miller12e126a2006-02-17 14:40:30 -0800581 prom_halt();
582 }
David S. Millerd82ace72006-02-09 02:52:44 -0800583}
584
David S. Millerc4bce902006-02-11 21:57:54 -0800585static unsigned long kern_large_tte(unsigned long paddr);
586
David S. Miller898cf0e2005-09-23 11:59:44 -0700587static void __init remap_kernel(void)
David S. Miller405599b2005-09-22 00:12:35 -0700588{
589 unsigned long phys_page, tte_vaddr, tte_data;
David S. Miller64658742008-03-21 17:01:38 -0700590 int i, tlb_ent = sparc64_highest_locked_tlbent();
David S. Miller405599b2005-09-22 00:12:35 -0700591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 tte_vaddr = (unsigned long) KERNBASE;
David S. Miller0eef3312014-05-03 22:52:50 -0700593 phys_page = (prom_boot_mapping_phys_low >> ILOG2_4MB) << ILOG2_4MB;
David S. Millerc4bce902006-02-11 21:57:54 -0800594 tte_data = kern_large_tte(phys_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 kern_locked_tte_data = tte_data;
597
David S. Millerd82ace72006-02-09 02:52:44 -0800598 /* Now lock us into the TLBs via Hypervisor or OBP. */
599 if (tlb_type == hypervisor) {
David S. Miller64658742008-03-21 17:01:38 -0700600 for (i = 0; i < num_kernel_image_mappings; i++) {
David S. Millerd82ace72006-02-09 02:52:44 -0800601 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_DMMU);
602 hypervisor_tlb_lock(tte_vaddr, tte_data, HV_MMU_IMMU);
David S. Miller64658742008-03-21 17:01:38 -0700603 tte_vaddr += 0x400000;
604 tte_data += 0x400000;
David S. Millerd82ace72006-02-09 02:52:44 -0800605 }
606 } else {
David S. Miller64658742008-03-21 17:01:38 -0700607 for (i = 0; i < num_kernel_image_mappings; i++) {
608 prom_dtlb_load(tlb_ent - i, tte_data, tte_vaddr);
609 prom_itlb_load(tlb_ent - i, tte_data, tte_vaddr);
610 tte_vaddr += 0x400000;
611 tte_data += 0x400000;
David S. Millerd82ace72006-02-09 02:52:44 -0800612 }
David S. Miller64658742008-03-21 17:01:38 -0700613 sparc64_highest_unlocked_tlb_ent = tlb_ent - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
David S. Miller0835ae02005-10-04 15:23:20 -0700615 if (tlb_type == cheetah_plus) {
616 sparc64_kern_pri_context = (CTX_CHEETAH_PLUS_CTX0 |
617 CTX_CHEETAH_PLUS_NUC);
618 sparc64_kern_pri_nuc_bits = CTX_CHEETAH_PLUS_NUC;
619 sparc64_kern_sec_context = CTX_CHEETAH_PLUS_CTX0;
620 }
David S. Miller405599b2005-09-22 00:12:35 -0700621}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
David S. Miller405599b2005-09-22 00:12:35 -0700623
David S. Millerc9c10832005-10-12 12:22:46 -0700624static void __init inherit_prom_mappings(void)
David S. Miller9ad98c52005-10-05 15:12:00 -0700625{
David S. Miller405599b2005-09-22 00:12:35 -0700626 /* Now fixup OBP's idea about where we really are mapped. */
David S. Miller3c62a2d2008-02-17 23:22:50 -0800627 printk("Remapping the kernel... ");
David S. Miller405599b2005-09-22 00:12:35 -0700628 remap_kernel();
David S. Miller3c62a2d2008-02-17 23:22:50 -0800629 printk("done.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632void prom_world(int enter)
633{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (!enter)
Al Virodff933d2012-09-26 01:21:14 -0400635 set_fs(get_fs());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
David S. Miller3487d1d2006-01-31 18:33:25 -0800637 __asm__ __volatile__("flushw");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640void __flush_dcache_range(unsigned long start, unsigned long end)
641{
642 unsigned long va;
643
644 if (tlb_type == spitfire) {
645 int n = 0;
646
647 for (va = start; va < end; va += 32) {
648 spitfire_put_dcache_tag(va & 0x3fe0, 0x0);
649 if (++n >= 512)
650 break;
651 }
David S. Millera43fe0e2006-02-04 03:10:53 -0800652 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 start = __pa(start);
654 end = __pa(end);
655 for (va = start; va < end; va += 32)
656 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
657 "membar #Sync"
658 : /* no outputs */
659 : "r" (va),
660 "i" (ASI_DCACHE_INVALIDATE));
661 }
662}
Sam Ravnborg917c3662009-01-08 16:58:20 -0800663EXPORT_SYMBOL(__flush_dcache_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
David S. Miller85f1e1f2007-03-15 17:51:26 -0700665/* get_new_mmu_context() uses "cache + 1". */
666DEFINE_SPINLOCK(ctx_alloc_lock);
667unsigned long tlb_context_cache = CTX_FIRST_VERSION - 1;
668#define MAX_CTX_NR (1UL << CTX_NR_BITS)
669#define CTX_BMAP_SLOTS BITS_TO_LONGS(MAX_CTX_NR)
670DECLARE_BITMAP(mmu_context_bmap, MAX_CTX_NR);
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672/* Caller does TLB context flushing on local CPU if necessary.
673 * The caller also ensures that CTX_VALID(mm->context) is false.
674 *
675 * We must be careful about boundary cases so that we never
676 * let the user have CTX 0 (nucleus) or we ever use a CTX
677 * version of zero (and thus NO_CONTEXT would not be caught
678 * by version mis-match tests in mmu_context.h).
David S. Millera0663a72006-02-23 14:19:28 -0800679 *
680 * Always invoked with interrupts disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 */
682void get_new_mmu_context(struct mm_struct *mm)
683{
684 unsigned long ctx, new_ctx;
685 unsigned long orig_pgsz_bits;
David S. Millera0663a72006-02-23 14:19:28 -0800686 int new_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Kirill Tkhai07df8412013-04-09 00:29:46 +0400688 spin_lock(&ctx_alloc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 orig_pgsz_bits = (mm->context.sparc64_ctx_val & CTX_PGSZ_MASK);
690 ctx = (tlb_context_cache + 1) & CTX_NR_MASK;
691 new_ctx = find_next_zero_bit(mmu_context_bmap, 1 << CTX_NR_BITS, ctx);
David S. Millera0663a72006-02-23 14:19:28 -0800692 new_version = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (new_ctx >= (1 << CTX_NR_BITS)) {
694 new_ctx = find_next_zero_bit(mmu_context_bmap, ctx, 1);
695 if (new_ctx >= ctx) {
696 int i;
697 new_ctx = (tlb_context_cache & CTX_VERSION_MASK) +
698 CTX_FIRST_VERSION;
699 if (new_ctx == 1)
700 new_ctx = CTX_FIRST_VERSION;
701
702 /* Don't call memset, for 16 entries that's just
703 * plain silly...
704 */
705 mmu_context_bmap[0] = 3;
706 mmu_context_bmap[1] = 0;
707 mmu_context_bmap[2] = 0;
708 mmu_context_bmap[3] = 0;
709 for (i = 4; i < CTX_BMAP_SLOTS; i += 4) {
710 mmu_context_bmap[i + 0] = 0;
711 mmu_context_bmap[i + 1] = 0;
712 mmu_context_bmap[i + 2] = 0;
713 mmu_context_bmap[i + 3] = 0;
714 }
David S. Millera0663a72006-02-23 14:19:28 -0800715 new_version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 goto out;
717 }
718 }
719 mmu_context_bmap[new_ctx>>6] |= (1UL << (new_ctx & 63));
720 new_ctx |= (tlb_context_cache & CTX_VERSION_MASK);
721out:
722 tlb_context_cache = new_ctx;
723 mm->context.sparc64_ctx_val = new_ctx | orig_pgsz_bits;
Kirill Tkhai07df8412013-04-09 00:29:46 +0400724 spin_unlock(&ctx_alloc_lock);
David S. Millera0663a72006-02-23 14:19:28 -0800725
726 if (unlikely(new_version))
727 smp_new_mmu_context_version();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
David S. Miller919ee672008-04-23 05:40:25 -0700730static int numa_enabled = 1;
731static int numa_debug;
732
733static int __init early_numa(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
David S. Miller919ee672008-04-23 05:40:25 -0700735 if (!p)
736 return 0;
David S. Millerd1112012006-03-08 02:16:07 -0800737
David S. Miller919ee672008-04-23 05:40:25 -0700738 if (strstr(p, "off"))
739 numa_enabled = 0;
David S. Millerd1112012006-03-08 02:16:07 -0800740
David S. Miller919ee672008-04-23 05:40:25 -0700741 if (strstr(p, "debug"))
742 numa_debug = 1;
743
744 return 0;
David S. Millerd1112012006-03-08 02:16:07 -0800745}
David S. Miller919ee672008-04-23 05:40:25 -0700746early_param("numa", early_numa);
747
748#define numadbg(f, a...) \
749do { if (numa_debug) \
750 printk(KERN_INFO f, ## a); \
751} while (0)
David S. Millerd1112012006-03-08 02:16:07 -0800752
David S. Miller4e82c9a2008-02-13 18:00:03 -0800753static void __init find_ramdisk(unsigned long phys_base)
754{
755#ifdef CONFIG_BLK_DEV_INITRD
756 if (sparc_ramdisk_image || sparc_ramdisk_image64) {
757 unsigned long ramdisk_image;
758
759 /* Older versions of the bootloader only supported a
760 * 32-bit physical address for the ramdisk image
761 * location, stored at sparc_ramdisk_image. Newer
762 * SILO versions set sparc_ramdisk_image to zero and
763 * provide a full 64-bit physical address at
764 * sparc_ramdisk_image64.
765 */
766 ramdisk_image = sparc_ramdisk_image;
767 if (!ramdisk_image)
768 ramdisk_image = sparc_ramdisk_image64;
769
770 /* Another bootloader quirk. The bootloader normalizes
771 * the physical address to KERNBASE, so we have to
772 * factor that back out and add in the lowest valid
773 * physical page address to get the true physical address.
774 */
775 ramdisk_image -= KERNBASE;
776 ramdisk_image += phys_base;
777
David S. Miller919ee672008-04-23 05:40:25 -0700778 numadbg("Found ramdisk at physical address 0x%lx, size %u\n",
779 ramdisk_image, sparc_ramdisk_size);
780
David S. Miller4e82c9a2008-02-13 18:00:03 -0800781 initrd_start = ramdisk_image;
782 initrd_end = ramdisk_image + sparc_ramdisk_size;
David S. Miller3b2a7e22008-02-13 18:13:20 -0800783
Yinghai Lu95f72d12010-07-12 14:36:09 +1000784 memblock_reserve(initrd_start, sparc_ramdisk_size);
David S. Millerd45100f2008-05-06 15:19:54 -0700785
786 initrd_start += PAGE_OFFSET;
787 initrd_end += PAGE_OFFSET;
David S. Miller4e82c9a2008-02-13 18:00:03 -0800788 }
789#endif
790}
791
David S. Miller919ee672008-04-23 05:40:25 -0700792struct node_mem_mask {
793 unsigned long mask;
794 unsigned long val;
David S. Miller919ee672008-04-23 05:40:25 -0700795};
796static struct node_mem_mask node_masks[MAX_NUMNODES];
797static int num_node_masks;
798
Sam Ravnborg48d37212014-05-16 23:26:12 +0200799#ifdef CONFIG_NEED_MULTIPLE_NODES
800
David S. Miller919ee672008-04-23 05:40:25 -0700801int numa_cpu_lookup_table[NR_CPUS];
802cpumask_t numa_cpumask_lookup_table[MAX_NUMNODES];
803
David S. Miller919ee672008-04-23 05:40:25 -0700804struct mdesc_mblock {
805 u64 base;
806 u64 size;
807 u64 offset; /* RA-to-PA */
808};
809static struct mdesc_mblock *mblocks;
810static int num_mblocks;
811
812static unsigned long ra_to_pa(unsigned long addr)
David S. Millerd1112012006-03-08 02:16:07 -0800813{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 int i;
815
David S. Miller919ee672008-04-23 05:40:25 -0700816 for (i = 0; i < num_mblocks; i++) {
817 struct mdesc_mblock *m = &mblocks[i];
David S. Miller6fc5bae2006-12-28 21:00:23 -0800818
David S. Miller919ee672008-04-23 05:40:25 -0700819 if (addr >= m->base &&
820 addr < (m->base + m->size)) {
821 addr += m->offset;
822 break;
823 }
824 }
825 return addr;
826}
827
828static int find_node(unsigned long addr)
829{
830 int i;
831
832 addr = ra_to_pa(addr);
833 for (i = 0; i < num_node_masks; i++) {
834 struct node_mem_mask *p = &node_masks[i];
835
836 if ((addr & p->mask) == p->val)
837 return i;
838 }
bob picco3dee9df2014-09-16 09:28:15 -0400839 /* The following condition has been observed on LDOM guests.*/
840 WARN_ONCE(1, "find_node: A physical address doesn't match a NUMA node"
841 " rule. Some physical memory will be owned by node 0.");
842 return 0;
David S. Miller919ee672008-04-23 05:40:25 -0700843}
844
Tejun Heof9b18db2011-07-12 10:46:32 +0200845static u64 memblock_nid_range(u64 start, u64 end, int *nid)
David S. Miller919ee672008-04-23 05:40:25 -0700846{
847 *nid = find_node(start);
848 start += PAGE_SIZE;
849 while (start < end) {
850 int n = find_node(start);
851
852 if (n != *nid)
853 break;
854 start += PAGE_SIZE;
855 }
856
David S. Millerc918dcc2008-08-14 01:41:39 -0700857 if (start > end)
858 start = end;
859
David S. Miller919ee672008-04-23 05:40:25 -0700860 return start;
861}
David S. Miller919ee672008-04-23 05:40:25 -0700862#endif
863
864/* This must be invoked after performing all of the necessary
Tejun Heo2a4814d2011-12-08 10:22:08 -0800865 * memblock_set_node() calls for 'nid'. We need to be able to get
David S. Miller919ee672008-04-23 05:40:25 -0700866 * correct data from get_pfn_range_for_nid().
867 */
868static void __init allocate_node_data(int nid)
869{
David S. Miller919ee672008-04-23 05:40:25 -0700870 struct pglist_data *p;
Paul Gortmakeraa6f0792012-05-09 20:44:29 -0400871 unsigned long start_pfn, end_pfn;
David S. Miller919ee672008-04-23 05:40:25 -0700872#ifdef CONFIG_NEED_MULTIPLE_NODES
Paul Gortmakeraa6f0792012-05-09 20:44:29 -0400873 unsigned long paddr;
874
Benjamin Herrenschmidt9d1e2492010-07-06 15:39:17 -0700875 paddr = memblock_alloc_try_nid(sizeof(struct pglist_data), SMP_CACHE_BYTES, nid);
David S. Miller919ee672008-04-23 05:40:25 -0700876 if (!paddr) {
877 prom_printf("Cannot allocate pglist_data for nid[%d]\n", nid);
878 prom_halt();
879 }
880 NODE_DATA(nid) = __va(paddr);
881 memset(NODE_DATA(nid), 0, sizeof(struct pglist_data));
882
David S. Miller625d6932012-04-25 13:13:43 -0700883 NODE_DATA(nid)->node_id = nid;
David S. Miller919ee672008-04-23 05:40:25 -0700884#endif
885
886 p = NODE_DATA(nid);
887
888 get_pfn_range_for_nid(nid, &start_pfn, &end_pfn);
889 p->node_start_pfn = start_pfn;
890 p->node_spanned_pages = end_pfn - start_pfn;
David S. Miller919ee672008-04-23 05:40:25 -0700891}
892
893static void init_node_masks_nonnuma(void)
894{
Sam Ravnborg48d37212014-05-16 23:26:12 +0200895#ifdef CONFIG_NEED_MULTIPLE_NODES
David S. Miller919ee672008-04-23 05:40:25 -0700896 int i;
Sam Ravnborg48d37212014-05-16 23:26:12 +0200897#endif
David S. Miller919ee672008-04-23 05:40:25 -0700898
899 numadbg("Initializing tables for non-numa.\n");
900
901 node_masks[0].mask = node_masks[0].val = 0;
902 num_node_masks = 1;
903
Sam Ravnborg48d37212014-05-16 23:26:12 +0200904#ifdef CONFIG_NEED_MULTIPLE_NODES
David S. Miller919ee672008-04-23 05:40:25 -0700905 for (i = 0; i < NR_CPUS; i++)
906 numa_cpu_lookup_table[i] = 0;
907
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -0700908 cpumask_setall(&numa_cpumask_lookup_table[0]);
Sam Ravnborg48d37212014-05-16 23:26:12 +0200909#endif
David S. Miller919ee672008-04-23 05:40:25 -0700910}
911
912#ifdef CONFIG_NEED_MULTIPLE_NODES
913struct pglist_data *node_data[MAX_NUMNODES];
914
915EXPORT_SYMBOL(numa_cpu_lookup_table);
916EXPORT_SYMBOL(numa_cpumask_lookup_table);
917EXPORT_SYMBOL(node_data);
918
919struct mdesc_mlgroup {
920 u64 node;
921 u64 latency;
922 u64 match;
923 u64 mask;
924};
925static struct mdesc_mlgroup *mlgroups;
926static int num_mlgroups;
927
928static int scan_pio_for_cfg_handle(struct mdesc_handle *md, u64 pio,
929 u32 cfg_handle)
930{
931 u64 arc;
932
933 mdesc_for_each_arc(arc, md, pio, MDESC_ARC_TYPE_FWD) {
934 u64 target = mdesc_arc_target(md, arc);
935 const u64 *val;
936
937 val = mdesc_get_property(md, target,
938 "cfg-handle", NULL);
939 if (val && *val == cfg_handle)
940 return 0;
941 }
942 return -ENODEV;
943}
944
945static int scan_arcs_for_cfg_handle(struct mdesc_handle *md, u64 grp,
946 u32 cfg_handle)
947{
948 u64 arc, candidate, best_latency = ~(u64)0;
949
950 candidate = MDESC_NODE_NULL;
951 mdesc_for_each_arc(arc, md, grp, MDESC_ARC_TYPE_FWD) {
952 u64 target = mdesc_arc_target(md, arc);
953 const char *name = mdesc_node_name(md, target);
954 const u64 *val;
955
956 if (strcmp(name, "pio-latency-group"))
957 continue;
958
959 val = mdesc_get_property(md, target, "latency", NULL);
960 if (!val)
961 continue;
962
963 if (*val < best_latency) {
964 candidate = target;
965 best_latency = *val;
966 }
967 }
968
969 if (candidate == MDESC_NODE_NULL)
970 return -ENODEV;
971
972 return scan_pio_for_cfg_handle(md, candidate, cfg_handle);
973}
974
975int of_node_to_nid(struct device_node *dp)
976{
977 const struct linux_prom64_registers *regs;
978 struct mdesc_handle *md;
979 u32 cfg_handle;
980 int count, nid;
981 u64 grp;
982
David S. Miller072bd412008-08-18 20:36:17 -0700983 /* This is the right thing to do on currently supported
984 * SUN4U NUMA platforms as well, as the PCI controller does
985 * not sit behind any particular memory controller.
986 */
David S. Miller919ee672008-04-23 05:40:25 -0700987 if (!mlgroups)
988 return -1;
989
990 regs = of_get_property(dp, "reg", NULL);
991 if (!regs)
992 return -1;
993
994 cfg_handle = (regs->phys_addr >> 32UL) & 0x0fffffff;
995
996 md = mdesc_grab();
997
998 count = 0;
999 nid = -1;
1000 mdesc_for_each_node_by_name(md, grp, "group") {
1001 if (!scan_arcs_for_cfg_handle(md, grp, cfg_handle)) {
1002 nid = count;
1003 break;
1004 }
1005 count++;
1006 }
1007
1008 mdesc_release(md);
1009
1010 return nid;
1011}
1012
David S. Miller01c453812009-04-07 01:05:22 -07001013static void __init add_node_ranges(void)
David S. Miller919ee672008-04-23 05:40:25 -07001014{
Benjamin Herrenschmidt08b84792010-08-04 13:43:31 +10001015 struct memblock_region *reg;
David S. Miller919ee672008-04-23 05:40:25 -07001016
Benjamin Herrenschmidt08b84792010-08-04 13:43:31 +10001017 for_each_memblock(memory, reg) {
1018 unsigned long size = reg->size;
David S. Miller919ee672008-04-23 05:40:25 -07001019 unsigned long start, end;
1020
Benjamin Herrenschmidt08b84792010-08-04 13:43:31 +10001021 start = reg->base;
David S. Miller919ee672008-04-23 05:40:25 -07001022 end = start + size;
1023 while (start < end) {
1024 unsigned long this_end;
1025 int nid;
1026
Benjamin Herrenschmidt35a1f0b2010-07-06 15:38:58 -07001027 this_end = memblock_nid_range(start, end, &nid);
David S. Miller919ee672008-04-23 05:40:25 -07001028
Tejun Heo2a4814d2011-12-08 10:22:08 -08001029 numadbg("Setting memblock NUMA node nid[%d] "
David S. Miller919ee672008-04-23 05:40:25 -07001030 "start[%lx] end[%lx]\n",
1031 nid, start, this_end);
1032
Tang Chene7e8de52014-01-21 15:49:26 -08001033 memblock_set_node(start, this_end - start,
1034 &memblock.memory, nid);
David S. Miller919ee672008-04-23 05:40:25 -07001035 start = this_end;
1036 }
1037 }
1038}
1039
1040static int __init grab_mlgroups(struct mdesc_handle *md)
1041{
1042 unsigned long paddr;
1043 int count = 0;
1044 u64 node;
1045
1046 mdesc_for_each_node_by_name(md, node, "memory-latency-group")
1047 count++;
1048 if (!count)
1049 return -ENOENT;
1050
Yinghai Lu95f72d12010-07-12 14:36:09 +10001051 paddr = memblock_alloc(count * sizeof(struct mdesc_mlgroup),
David S. Miller919ee672008-04-23 05:40:25 -07001052 SMP_CACHE_BYTES);
1053 if (!paddr)
1054 return -ENOMEM;
1055
1056 mlgroups = __va(paddr);
1057 num_mlgroups = count;
1058
1059 count = 0;
1060 mdesc_for_each_node_by_name(md, node, "memory-latency-group") {
1061 struct mdesc_mlgroup *m = &mlgroups[count++];
1062 const u64 *val;
1063
1064 m->node = node;
1065
1066 val = mdesc_get_property(md, node, "latency", NULL);
1067 m->latency = *val;
1068 val = mdesc_get_property(md, node, "address-match", NULL);
1069 m->match = *val;
1070 val = mdesc_get_property(md, node, "address-mask", NULL);
1071 m->mask = *val;
1072
Sam Ravnborg90181132009-01-06 13:19:28 -08001073 numadbg("MLGROUP[%d]: node[%llx] latency[%llx] "
1074 "match[%llx] mask[%llx]\n",
David S. Miller919ee672008-04-23 05:40:25 -07001075 count - 1, m->node, m->latency, m->match, m->mask);
1076 }
1077
1078 return 0;
1079}
1080
1081static int __init grab_mblocks(struct mdesc_handle *md)
1082{
1083 unsigned long paddr;
1084 int count = 0;
1085 u64 node;
1086
1087 mdesc_for_each_node_by_name(md, node, "mblock")
1088 count++;
1089 if (!count)
1090 return -ENOENT;
1091
Yinghai Lu95f72d12010-07-12 14:36:09 +10001092 paddr = memblock_alloc(count * sizeof(struct mdesc_mblock),
David S. Miller919ee672008-04-23 05:40:25 -07001093 SMP_CACHE_BYTES);
1094 if (!paddr)
1095 return -ENOMEM;
1096
1097 mblocks = __va(paddr);
1098 num_mblocks = count;
1099
1100 count = 0;
1101 mdesc_for_each_node_by_name(md, node, "mblock") {
1102 struct mdesc_mblock *m = &mblocks[count++];
1103 const u64 *val;
1104
1105 val = mdesc_get_property(md, node, "base", NULL);
1106 m->base = *val;
1107 val = mdesc_get_property(md, node, "size", NULL);
1108 m->size = *val;
1109 val = mdesc_get_property(md, node,
1110 "address-congruence-offset", NULL);
bob picco771a37f2013-06-11 14:54:51 -04001111
1112 /* The address-congruence-offset property is optional.
1113 * Explicity zero it be identifty this.
1114 */
1115 if (val)
1116 m->offset = *val;
1117 else
1118 m->offset = 0UL;
David S. Miller919ee672008-04-23 05:40:25 -07001119
Sam Ravnborg90181132009-01-06 13:19:28 -08001120 numadbg("MBLOCK[%d]: base[%llx] size[%llx] offset[%llx]\n",
David S. Miller919ee672008-04-23 05:40:25 -07001121 count - 1, m->base, m->size, m->offset);
1122 }
1123
1124 return 0;
1125}
1126
1127static void __init numa_parse_mdesc_group_cpus(struct mdesc_handle *md,
1128 u64 grp, cpumask_t *mask)
1129{
1130 u64 arc;
1131
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001132 cpumask_clear(mask);
David S. Miller919ee672008-04-23 05:40:25 -07001133
1134 mdesc_for_each_arc(arc, md, grp, MDESC_ARC_TYPE_BACK) {
1135 u64 target = mdesc_arc_target(md, arc);
1136 const char *name = mdesc_node_name(md, target);
1137 const u64 *id;
1138
1139 if (strcmp(name, "cpu"))
1140 continue;
1141 id = mdesc_get_property(md, target, "id", NULL);
Rusty Russelle305cb8f2009-03-16 14:40:23 +10301142 if (*id < nr_cpu_ids)
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001143 cpumask_set_cpu(*id, mask);
David S. Miller919ee672008-04-23 05:40:25 -07001144 }
1145}
1146
1147static struct mdesc_mlgroup * __init find_mlgroup(u64 node)
1148{
1149 int i;
1150
1151 for (i = 0; i < num_mlgroups; i++) {
1152 struct mdesc_mlgroup *m = &mlgroups[i];
1153 if (m->node == node)
1154 return m;
1155 }
1156 return NULL;
1157}
1158
1159static int __init numa_attach_mlgroup(struct mdesc_handle *md, u64 grp,
1160 int index)
1161{
1162 struct mdesc_mlgroup *candidate = NULL;
1163 u64 arc, best_latency = ~(u64)0;
1164 struct node_mem_mask *n;
1165
1166 mdesc_for_each_arc(arc, md, grp, MDESC_ARC_TYPE_FWD) {
1167 u64 target = mdesc_arc_target(md, arc);
1168 struct mdesc_mlgroup *m = find_mlgroup(target);
1169 if (!m)
1170 continue;
1171 if (m->latency < best_latency) {
1172 candidate = m;
1173 best_latency = m->latency;
1174 }
1175 }
1176 if (!candidate)
1177 return -ENOENT;
1178
1179 if (num_node_masks != index) {
1180 printk(KERN_ERR "Inconsistent NUMA state, "
1181 "index[%d] != num_node_masks[%d]\n",
1182 index, num_node_masks);
1183 return -EINVAL;
1184 }
1185
1186 n = &node_masks[num_node_masks++];
1187
1188 n->mask = candidate->mask;
1189 n->val = candidate->match;
1190
Sam Ravnborg90181132009-01-06 13:19:28 -08001191 numadbg("NUMA NODE[%d]: mask[%lx] val[%lx] (latency[%llx])\n",
David S. Miller919ee672008-04-23 05:40:25 -07001192 index, n->mask, n->val, candidate->latency);
1193
1194 return 0;
1195}
1196
1197static int __init numa_parse_mdesc_group(struct mdesc_handle *md, u64 grp,
1198 int index)
1199{
1200 cpumask_t mask;
1201 int cpu;
1202
1203 numa_parse_mdesc_group_cpus(md, grp, &mask);
1204
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001205 for_each_cpu(cpu, &mask)
David S. Miller919ee672008-04-23 05:40:25 -07001206 numa_cpu_lookup_table[cpu] = index;
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001207 cpumask_copy(&numa_cpumask_lookup_table[index], &mask);
David S. Miller919ee672008-04-23 05:40:25 -07001208
1209 if (numa_debug) {
1210 printk(KERN_INFO "NUMA GROUP[%d]: cpus [ ", index);
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001211 for_each_cpu(cpu, &mask)
David S. Miller919ee672008-04-23 05:40:25 -07001212 printk("%d ", cpu);
1213 printk("]\n");
1214 }
1215
1216 return numa_attach_mlgroup(md, grp, index);
1217}
1218
1219static int __init numa_parse_mdesc(void)
1220{
1221 struct mdesc_handle *md = mdesc_grab();
1222 int i, err, count;
1223 u64 node;
1224
1225 node = mdesc_node_by_name(md, MDESC_NODE_NULL, "latency-groups");
1226 if (node == MDESC_NODE_NULL) {
1227 mdesc_release(md);
1228 return -ENOENT;
1229 }
1230
1231 err = grab_mblocks(md);
1232 if (err < 0)
1233 goto out;
1234
1235 err = grab_mlgroups(md);
1236 if (err < 0)
1237 goto out;
1238
1239 count = 0;
1240 mdesc_for_each_node_by_name(md, node, "group") {
1241 err = numa_parse_mdesc_group(md, node, count);
1242 if (err < 0)
1243 break;
1244 count++;
1245 }
1246
1247 add_node_ranges();
1248
1249 for (i = 0; i < num_node_masks; i++) {
1250 allocate_node_data(i);
1251 node_set_online(i);
1252 }
1253
1254 err = 0;
1255out:
1256 mdesc_release(md);
1257 return err;
1258}
1259
David S. Miller072bd412008-08-18 20:36:17 -07001260static int __init numa_parse_jbus(void)
1261{
1262 unsigned long cpu, index;
1263
1264 /* NUMA node id is encoded in bits 36 and higher, and there is
1265 * a 1-to-1 mapping from CPU ID to NUMA node ID.
1266 */
1267 index = 0;
1268 for_each_present_cpu(cpu) {
1269 numa_cpu_lookup_table[cpu] = index;
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -07001270 cpumask_copy(&numa_cpumask_lookup_table[index], cpumask_of(cpu));
David S. Miller072bd412008-08-18 20:36:17 -07001271 node_masks[index].mask = ~((1UL << 36UL) - 1UL);
1272 node_masks[index].val = cpu << 36UL;
1273
1274 index++;
1275 }
1276 num_node_masks = index;
1277
1278 add_node_ranges();
1279
1280 for (index = 0; index < num_node_masks; index++) {
1281 allocate_node_data(index);
1282 node_set_online(index);
1283 }
1284
1285 return 0;
1286}
1287
David S. Miller919ee672008-04-23 05:40:25 -07001288static int __init numa_parse_sun4u(void)
1289{
David S. Miller072bd412008-08-18 20:36:17 -07001290 if (tlb_type == cheetah || tlb_type == cheetah_plus) {
1291 unsigned long ver;
1292
1293 __asm__ ("rdpr %%ver, %0" : "=r" (ver));
1294 if ((ver >> 32UL) == __JALAPENO_ID ||
1295 (ver >> 32UL) == __SERRANO_ID)
1296 return numa_parse_jbus();
1297 }
David S. Miller919ee672008-04-23 05:40:25 -07001298 return -1;
1299}
1300
1301static int __init bootmem_init_numa(void)
1302{
1303 int err = -1;
1304
1305 numadbg("bootmem_init_numa()\n");
1306
1307 if (numa_enabled) {
1308 if (tlb_type == hypervisor)
1309 err = numa_parse_mdesc();
1310 else
1311 err = numa_parse_sun4u();
1312 }
1313 return err;
1314}
1315
1316#else
1317
1318static int bootmem_init_numa(void)
1319{
1320 return -1;
1321}
1322
1323#endif
1324
1325static void __init bootmem_init_nonnuma(void)
1326{
Yinghai Lu95f72d12010-07-12 14:36:09 +10001327 unsigned long top_of_ram = memblock_end_of_DRAM();
1328 unsigned long total_ram = memblock_phys_mem_size();
David S. Miller919ee672008-04-23 05:40:25 -07001329
1330 numadbg("bootmem_init_nonnuma()\n");
1331
1332 printk(KERN_INFO "Top of RAM: 0x%lx, Total RAM: 0x%lx\n",
1333 top_of_ram, total_ram);
1334 printk(KERN_INFO "Memory hole size: %ldMB\n",
1335 (top_of_ram - total_ram) >> 20);
1336
1337 init_node_masks_nonnuma();
Tang Chene7e8de52014-01-21 15:49:26 -08001338 memblock_set_node(0, (phys_addr_t)ULLONG_MAX, &memblock.memory, 0);
David S. Miller919ee672008-04-23 05:40:25 -07001339 allocate_node_data(0);
David S. Miller919ee672008-04-23 05:40:25 -07001340 node_set_online(0);
1341}
1342
David S. Miller919ee672008-04-23 05:40:25 -07001343static unsigned long __init bootmem_init(unsigned long phys_base)
1344{
1345 unsigned long end_pfn;
David S. Miller919ee672008-04-23 05:40:25 -07001346
Yinghai Lu95f72d12010-07-12 14:36:09 +10001347 end_pfn = memblock_end_of_DRAM() >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 max_pfn = max_low_pfn = end_pfn;
David S. Millerd1112012006-03-08 02:16:07 -08001349 min_low_pfn = (phys_base >> PAGE_SHIFT);
1350
David S. Miller919ee672008-04-23 05:40:25 -07001351 if (bootmem_init_numa() < 0)
1352 bootmem_init_nonnuma();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
David S. Miller625d6932012-04-25 13:13:43 -07001354 /* Dump memblock with node info. */
1355 memblock_dump_all();
1356
David S. Miller919ee672008-04-23 05:40:25 -07001357 /* XXX cpu notifier XXX */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
David S. Miller625d6932012-04-25 13:13:43 -07001359 sparse_memory_present_with_active_regions(MAX_NUMNODES);
David S. Millerd1112012006-03-08 02:16:07 -08001360 sparse_init();
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 return end_pfn;
1363}
1364
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001365static struct linux_prom64_registers pall[MAX_BANKS] __initdata;
1366static int pall_ents __initdata;
1367
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001368static unsigned long max_phys_bits = 40;
1369
1370bool kern_addr_valid(unsigned long addr)
1371{
1372 unsigned long above = ((long)addr) >> max_phys_bits;
1373 pgd_t *pgd;
1374 pud_t *pud;
1375 pmd_t *pmd;
1376 pte_t *pte;
1377
1378 if (above != 0 && above != -1UL)
1379 return false;
1380
1381 if (addr >= (unsigned long) KERNBASE &&
1382 addr < (unsigned long)&_end)
1383 return true;
1384
1385 if (addr >= PAGE_OFFSET) {
1386 unsigned long pa = __pa(addr);
1387
1388 return pfn_valid(pa >> PAGE_SHIFT);
1389 }
1390
1391 pgd = pgd_offset_k(addr);
1392 if (pgd_none(*pgd))
1393 return 0;
1394
1395 pud = pud_offset(pgd, addr);
1396 if (pud_none(*pud))
1397 return 0;
1398
1399 if (pud_large(*pud))
1400 return pfn_valid(pud_pfn(*pud));
1401
1402 pmd = pmd_offset(pud, addr);
1403 if (pmd_none(*pmd))
1404 return 0;
1405
1406 if (pmd_large(*pmd))
1407 return pfn_valid(pmd_pfn(*pmd));
1408
1409 pte = pte_offset_kernel(pmd, addr);
1410 if (pte_none(*pte))
1411 return 0;
1412
1413 return pfn_valid(pte_pfn(*pte));
1414}
1415EXPORT_SYMBOL(kern_addr_valid);
1416
1417static unsigned long __ref kernel_map_hugepud(unsigned long vstart,
1418 unsigned long vend,
1419 pud_t *pud)
1420{
1421 const unsigned long mask16gb = (1UL << 34) - 1UL;
1422 u64 pte_val = vstart;
1423
1424 /* Each PUD is 8GB */
1425 if ((vstart & mask16gb) ||
1426 (vend - vstart <= mask16gb)) {
1427 pte_val ^= kern_linear_pte_xor[2];
1428 pud_val(*pud) = pte_val | _PAGE_PUD_HUGE;
1429
1430 return vstart + PUD_SIZE;
1431 }
1432
1433 pte_val ^= kern_linear_pte_xor[3];
1434 pte_val |= _PAGE_PUD_HUGE;
1435
1436 vend = vstart + mask16gb + 1UL;
1437 while (vstart < vend) {
1438 pud_val(*pud) = pte_val;
1439
1440 pte_val += PUD_SIZE;
1441 vstart += PUD_SIZE;
1442 pud++;
1443 }
1444 return vstart;
1445}
1446
1447static bool kernel_can_map_hugepud(unsigned long vstart, unsigned long vend,
1448 bool guard)
1449{
1450 if (guard && !(vstart & ~PUD_MASK) && (vend - vstart) >= PUD_SIZE)
1451 return true;
1452
1453 return false;
1454}
1455
1456static unsigned long __ref kernel_map_hugepmd(unsigned long vstart,
1457 unsigned long vend,
1458 pmd_t *pmd)
1459{
1460 const unsigned long mask256mb = (1UL << 28) - 1UL;
1461 const unsigned long mask2gb = (1UL << 31) - 1UL;
1462 u64 pte_val = vstart;
1463
1464 /* Each PMD is 8MB */
1465 if ((vstart & mask256mb) ||
1466 (vend - vstart <= mask256mb)) {
1467 pte_val ^= kern_linear_pte_xor[0];
1468 pmd_val(*pmd) = pte_val | _PAGE_PMD_HUGE;
1469
1470 return vstart + PMD_SIZE;
1471 }
1472
1473 if ((vstart & mask2gb) ||
1474 (vend - vstart <= mask2gb)) {
1475 pte_val ^= kern_linear_pte_xor[1];
1476 pte_val |= _PAGE_PMD_HUGE;
1477 vend = vstart + mask256mb + 1UL;
1478 } else {
1479 pte_val ^= kern_linear_pte_xor[2];
1480 pte_val |= _PAGE_PMD_HUGE;
1481 vend = vstart + mask2gb + 1UL;
1482 }
1483
1484 while (vstart < vend) {
1485 pmd_val(*pmd) = pte_val;
1486
1487 pte_val += PMD_SIZE;
1488 vstart += PMD_SIZE;
1489 pmd++;
1490 }
1491
1492 return vstart;
1493}
1494
1495static bool kernel_can_map_hugepmd(unsigned long vstart, unsigned long vend,
1496 bool guard)
1497{
1498 if (guard && !(vstart & ~PMD_MASK) && (vend - vstart) >= PMD_SIZE)
1499 return true;
1500
1501 return false;
1502}
1503
Sam Ravnborg896aef42008-02-24 19:49:52 -08001504static unsigned long __ref kernel_map_range(unsigned long pstart,
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001505 unsigned long pend, pgprot_t prot,
1506 bool use_huge)
David S. Miller56425302005-09-25 16:46:57 -07001507{
1508 unsigned long vstart = PAGE_OFFSET + pstart;
1509 unsigned long vend = PAGE_OFFSET + pend;
1510 unsigned long alloc_bytes = 0UL;
1511
1512 if ((vstart & ~PAGE_MASK) || (vend & ~PAGE_MASK)) {
David S. Miller13edad72005-09-29 17:58:26 -07001513 prom_printf("kernel_map: Unaligned physmem[%lx:%lx]\n",
David S. Miller56425302005-09-25 16:46:57 -07001514 vstart, vend);
1515 prom_halt();
1516 }
1517
1518 while (vstart < vend) {
1519 unsigned long this_end, paddr = __pa(vstart);
1520 pgd_t *pgd = pgd_offset_k(vstart);
1521 pud_t *pud;
1522 pmd_t *pmd;
1523 pte_t *pte;
1524
David S. Millerac55c762014-09-26 21:19:46 -07001525 if (pgd_none(*pgd)) {
1526 pud_t *new;
1527
1528 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
1529 alloc_bytes += PAGE_SIZE;
1530 pgd_populate(&init_mm, pgd, new);
1531 }
David S. Miller56425302005-09-25 16:46:57 -07001532 pud = pud_offset(pgd, vstart);
1533 if (pud_none(*pud)) {
1534 pmd_t *new;
1535
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001536 if (kernel_can_map_hugepud(vstart, vend, use_huge)) {
1537 vstart = kernel_map_hugepud(vstart, vend, pud);
1538 continue;
1539 }
David S. Miller56425302005-09-25 16:46:57 -07001540 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
1541 alloc_bytes += PAGE_SIZE;
1542 pud_populate(&init_mm, pud, new);
1543 }
1544
1545 pmd = pmd_offset(pud, vstart);
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001546 if (pmd_none(*pmd)) {
David S. Miller56425302005-09-25 16:46:57 -07001547 pte_t *new;
1548
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001549 if (kernel_can_map_hugepmd(vstart, vend, use_huge)) {
1550 vstart = kernel_map_hugepmd(vstart, vend, pmd);
1551 continue;
1552 }
David S. Miller56425302005-09-25 16:46:57 -07001553 new = __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, PAGE_SIZE);
1554 alloc_bytes += PAGE_SIZE;
1555 pmd_populate_kernel(&init_mm, pmd, new);
1556 }
1557
1558 pte = pte_offset_kernel(pmd, vstart);
1559 this_end = (vstart + PMD_SIZE) & PMD_MASK;
1560 if (this_end > vend)
1561 this_end = vend;
1562
1563 while (vstart < this_end) {
1564 pte_val(*pte) = (paddr | pgprot_val(prot));
1565
1566 vstart += PAGE_SIZE;
1567 paddr += PAGE_SIZE;
1568 pte++;
1569 }
1570 }
1571
1572 return alloc_bytes;
1573}
1574
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001575static void __init flush_all_kernel_tsbs(void)
1576{
1577 int i;
1578
1579 for (i = 0; i < KERNEL_TSB_NENTRIES; i++) {
1580 struct tsb *ent = &swapper_tsb[i];
1581
1582 ent->tag = (1UL << TSB_TAG_INVALID_BIT);
1583 }
1584#ifndef CONFIG_DEBUG_PAGEALLOC
1585 for (i = 0; i < KERNEL_TSB4M_NENTRIES; i++) {
1586 struct tsb *ent = &swapper_4m_tsb[i];
1587
1588 ent->tag = (1UL << TSB_TAG_INVALID_BIT);
1589 }
1590#endif
1591}
1592
David S. Miller56425302005-09-25 16:46:57 -07001593extern unsigned int kvmap_linear_patch[1];
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001594
David S. Miller8f3614532007-12-13 06:13:38 -08001595static void __init kernel_physical_mapping_init(void)
1596{
David S. Miller8f3614532007-12-13 06:13:38 -08001597 unsigned long i, mem_alloced = 0UL;
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001598 bool use_huge = true;
David S. Miller8f3614532007-12-13 06:13:38 -08001599
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001600#ifdef CONFIG_DEBUG_PAGEALLOC
1601 use_huge = false;
1602#endif
David S. Miller8f3614532007-12-13 06:13:38 -08001603 for (i = 0; i < pall_ents; i++) {
1604 unsigned long phys_start, phys_end;
1605
1606 phys_start = pall[i].phys_addr;
1607 phys_end = phys_start + pall[i].reg_size;
1608
David S. Miller56425302005-09-25 16:46:57 -07001609 mem_alloced += kernel_map_range(phys_start, phys_end,
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001610 PAGE_KERNEL, use_huge);
David S. Miller56425302005-09-25 16:46:57 -07001611 }
1612
1613 printk("Allocated %ld bytes for kernel page tables.\n",
1614 mem_alloced);
1615
1616 kvmap_linear_patch[0] = 0x01000000; /* nop */
1617 flushi(&kvmap_linear_patch[0]);
1618
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001619 flush_all_kernel_tsbs();
1620
David S. Miller56425302005-09-25 16:46:57 -07001621 __flush_tlb_all();
1622}
1623
David S. Miller9cc3a1a2006-02-21 20:51:13 -08001624#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller56425302005-09-25 16:46:57 -07001625void kernel_map_pages(struct page *page, int numpages, int enable)
1626{
1627 unsigned long phys_start = page_to_pfn(page) << PAGE_SHIFT;
1628 unsigned long phys_end = phys_start + (numpages * PAGE_SIZE);
1629
1630 kernel_map_range(phys_start, phys_end,
David S. Miller0dd5b7b2014-09-24 20:56:11 -07001631 (enable ? PAGE_KERNEL : __pgprot(0)), false);
David S. Miller56425302005-09-25 16:46:57 -07001632
David S. Miller74bf4312006-01-31 18:29:18 -08001633 flush_tsb_kernel_range(PAGE_OFFSET + phys_start,
1634 PAGE_OFFSET + phys_end);
1635
David S. Miller56425302005-09-25 16:46:57 -07001636 /* we should perform an IPI and flush all tlbs,
1637 * but that can deadlock->flush only current cpu.
1638 */
1639 __flush_tlb_kernel_range(PAGE_OFFSET + phys_start,
1640 PAGE_OFFSET + phys_end);
1641}
1642#endif
1643
David S. Miller10147572005-09-28 21:46:43 -07001644unsigned long __init find_ecache_flush_span(unsigned long size)
1645{
David S. Miller13edad72005-09-29 17:58:26 -07001646 int i;
David S. Miller10147572005-09-28 21:46:43 -07001647
David S. Miller13edad72005-09-29 17:58:26 -07001648 for (i = 0; i < pavail_ents; i++) {
1649 if (pavail[i].reg_size >= size)
1650 return pavail[i].phys_addr;
David S. Miller10147572005-09-28 21:46:43 -07001651 }
1652
1653 return ~0UL;
1654}
1655
David S. Millerb2d43832013-09-20 21:50:41 -07001656unsigned long PAGE_OFFSET;
1657EXPORT_SYMBOL(PAGE_OFFSET);
1658
David S. Miller4397bed2014-09-26 21:58:33 -07001659unsigned long sparc64_va_hole_top = 0xfffff80000000000UL;
1660unsigned long sparc64_va_hole_bottom = 0x0000080000000000UL;
1661
David S. Millerb2d43832013-09-20 21:50:41 -07001662static void __init setup_page_offset(void)
1663{
David S. Millerb2d43832013-09-20 21:50:41 -07001664 if (tlb_type == cheetah || tlb_type == cheetah_plus) {
David S. Miller4397bed2014-09-26 21:58:33 -07001665 /* Cheetah/Panther support a full 64-bit virtual
1666 * address, so we can use all that our page tables
1667 * support.
1668 */
1669 sparc64_va_hole_top = 0xfff0000000000000UL;
1670 sparc64_va_hole_bottom = 0x0010000000000000UL;
1671
David S. Millerb2d43832013-09-20 21:50:41 -07001672 max_phys_bits = 42;
1673 } else if (tlb_type == hypervisor) {
1674 switch (sun4v_chip_type) {
1675 case SUN4V_CHIP_NIAGARA1:
1676 case SUN4V_CHIP_NIAGARA2:
David S. Miller4397bed2014-09-26 21:58:33 -07001677 /* T1 and T2 support 48-bit virtual addresses. */
1678 sparc64_va_hole_top = 0xffff800000000000UL;
1679 sparc64_va_hole_bottom = 0x0000800000000000UL;
1680
David S. Millerb2d43832013-09-20 21:50:41 -07001681 max_phys_bits = 39;
1682 break;
1683 case SUN4V_CHIP_NIAGARA3:
David S. Miller4397bed2014-09-26 21:58:33 -07001684 /* T3 supports 48-bit virtual addresses. */
1685 sparc64_va_hole_top = 0xffff800000000000UL;
1686 sparc64_va_hole_bottom = 0x0000800000000000UL;
1687
David S. Millerb2d43832013-09-20 21:50:41 -07001688 max_phys_bits = 43;
1689 break;
1690 case SUN4V_CHIP_NIAGARA4:
1691 case SUN4V_CHIP_NIAGARA5:
1692 case SUN4V_CHIP_SPARC64X:
David S. Miller7c0fa0f2014-09-24 21:49:29 -07001693 case SUN4V_CHIP_SPARC_M6:
David S. Miller4397bed2014-09-26 21:58:33 -07001694 /* T4 and later support 52-bit virtual addresses. */
1695 sparc64_va_hole_top = 0xfff8000000000000UL;
1696 sparc64_va_hole_bottom = 0x0008000000000000UL;
David S. Millerb2d43832013-09-20 21:50:41 -07001697 max_phys_bits = 47;
1698 break;
David S. Miller7c0fa0f2014-09-24 21:49:29 -07001699 case SUN4V_CHIP_SPARC_M7:
1700 default:
1701 /* M7 and later support 52-bit virtual addresses. */
1702 sparc64_va_hole_top = 0xfff8000000000000UL;
1703 sparc64_va_hole_bottom = 0x0008000000000000UL;
1704 max_phys_bits = 49;
1705 break;
David S. Millerb2d43832013-09-20 21:50:41 -07001706 }
1707 }
1708
1709 if (max_phys_bits > MAX_PHYS_ADDRESS_BITS) {
1710 prom_printf("MAX_PHYS_ADDRESS_BITS is too small, need %lu\n",
1711 max_phys_bits);
1712 prom_halt();
1713 }
1714
1715 PAGE_OFFSET = PAGE_OFFSET_BY_BITS(max_phys_bits);
1716
1717 pr_info("PAGE_OFFSET is 0x%016lx (max_phys_bits == %lu)\n",
1718 PAGE_OFFSET, max_phys_bits);
David S. Millerb2d43832013-09-20 21:50:41 -07001719}
1720
David S. Miller517af332006-02-01 15:55:21 -08001721static void __init tsb_phys_patch(void)
1722{
David S. Millerd257d5d2006-02-06 23:44:37 -08001723 struct tsb_ldquad_phys_patch_entry *pquad;
David S. Miller517af332006-02-01 15:55:21 -08001724 struct tsb_phys_patch_entry *p;
1725
David S. Millerd257d5d2006-02-06 23:44:37 -08001726 pquad = &__tsb_ldquad_phys_patch;
1727 while (pquad < &__tsb_ldquad_phys_patch_end) {
1728 unsigned long addr = pquad->addr;
1729
1730 if (tlb_type == hypervisor)
1731 *(unsigned int *) addr = pquad->sun4v_insn;
1732 else
1733 *(unsigned int *) addr = pquad->sun4u_insn;
1734 wmb();
1735 __asm__ __volatile__("flush %0"
1736 : /* no outputs */
1737 : "r" (addr));
1738
1739 pquad++;
1740 }
1741
David S. Miller517af332006-02-01 15:55:21 -08001742 p = &__tsb_phys_patch;
1743 while (p < &__tsb_phys_patch_end) {
1744 unsigned long addr = p->addr;
1745
1746 *(unsigned int *) addr = p->insn;
1747 wmb();
1748 __asm__ __volatile__("flush %0"
1749 : /* no outputs */
1750 : "r" (addr));
1751
1752 p++;
1753 }
1754}
1755
David S. Miller490384e2006-02-11 14:41:18 -08001756/* Don't mark as init, we give this to the Hypervisor. */
David S. Millerd1acb422007-03-16 17:20:28 -07001757#ifndef CONFIG_DEBUG_PAGEALLOC
1758#define NUM_KTSB_DESCR 2
1759#else
1760#define NUM_KTSB_DESCR 1
1761#endif
1762static struct hv_tsb_descr ktsb_descr[NUM_KTSB_DESCR];
David S. Miller490384e2006-02-11 14:41:18 -08001763
David S. Miller8c82dc02014-09-17 10:14:56 -07001764/* The swapper TSBs are loaded with a base sequence of:
1765 *
1766 * sethi %uhi(SYMBOL), REG1
1767 * sethi %hi(SYMBOL), REG2
1768 * or REG1, %ulo(SYMBOL), REG1
1769 * or REG2, %lo(SYMBOL), REG2
1770 * sllx REG1, 32, REG1
1771 * or REG1, REG2, REG1
1772 *
1773 * When we use physical addressing for the TSB accesses, we patch the
1774 * first four instructions in the above sequence.
1775 */
1776
David S. Miller9076d0e2011-08-05 00:53:57 -07001777static void patch_one_ktsb_phys(unsigned int *start, unsigned int *end, unsigned long pa)
1778{
David S. Miller8c82dc02014-09-17 10:14:56 -07001779 unsigned long high_bits, low_bits;
1780
1781 high_bits = (pa >> 32) & 0xffffffff;
1782 low_bits = (pa >> 0) & 0xffffffff;
David S. Miller9076d0e2011-08-05 00:53:57 -07001783
1784 while (start < end) {
1785 unsigned int *ia = (unsigned int *)(unsigned long)*start;
1786
David S. Miller8c82dc02014-09-17 10:14:56 -07001787 ia[0] = (ia[0] & ~0x3fffff) | (high_bits >> 10);
David S. Miller9076d0e2011-08-05 00:53:57 -07001788 __asm__ __volatile__("flush %0" : : "r" (ia));
1789
David S. Miller8c82dc02014-09-17 10:14:56 -07001790 ia[1] = (ia[1] & ~0x3fffff) | (low_bits >> 10);
David S. Miller9076d0e2011-08-05 00:53:57 -07001791 __asm__ __volatile__("flush %0" : : "r" (ia + 1));
1792
David S. Miller8c82dc02014-09-17 10:14:56 -07001793 ia[2] = (ia[2] & ~0x1fff) | (high_bits & 0x3ff);
1794 __asm__ __volatile__("flush %0" : : "r" (ia + 2));
1795
1796 ia[3] = (ia[3] & ~0x1fff) | (low_bits & 0x3ff);
1797 __asm__ __volatile__("flush %0" : : "r" (ia + 3));
1798
David S. Miller9076d0e2011-08-05 00:53:57 -07001799 start++;
1800 }
1801}
1802
1803static void ktsb_phys_patch(void)
1804{
1805 extern unsigned int __swapper_tsb_phys_patch;
1806 extern unsigned int __swapper_tsb_phys_patch_end;
David S. Miller9076d0e2011-08-05 00:53:57 -07001807 unsigned long ktsb_pa;
1808
1809 ktsb_pa = kern_base + ((unsigned long)&swapper_tsb[0] - KERNBASE);
1810 patch_one_ktsb_phys(&__swapper_tsb_phys_patch,
1811 &__swapper_tsb_phys_patch_end, ktsb_pa);
1812#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Miller0785a8e2011-08-06 05:26:35 -07001813 {
1814 extern unsigned int __swapper_4m_tsb_phys_patch;
1815 extern unsigned int __swapper_4m_tsb_phys_patch_end;
David S. Miller9076d0e2011-08-05 00:53:57 -07001816 ktsb_pa = (kern_base +
1817 ((unsigned long)&swapper_4m_tsb[0] - KERNBASE));
1818 patch_one_ktsb_phys(&__swapper_4m_tsb_phys_patch,
1819 &__swapper_4m_tsb_phys_patch_end, ktsb_pa);
David S. Miller0785a8e2011-08-06 05:26:35 -07001820 }
David S. Miller9076d0e2011-08-05 00:53:57 -07001821#endif
1822}
1823
David S. Miller490384e2006-02-11 14:41:18 -08001824static void __init sun4v_ktsb_init(void)
1825{
1826 unsigned long ktsb_pa;
1827
David S. Millerd7744a02006-02-21 22:31:11 -08001828 /* First KTSB for PAGE_SIZE mappings. */
David S. Miller490384e2006-02-11 14:41:18 -08001829 ktsb_pa = kern_base + ((unsigned long)&swapper_tsb[0] - KERNBASE);
1830
1831 switch (PAGE_SIZE) {
1832 case 8 * 1024:
1833 default:
1834 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_8K;
1835 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_8K;
1836 break;
1837
1838 case 64 * 1024:
1839 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_64K;
1840 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_64K;
1841 break;
1842
1843 case 512 * 1024:
1844 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_512K;
1845 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_512K;
1846 break;
1847
1848 case 4 * 1024 * 1024:
1849 ktsb_descr[0].pgsz_idx = HV_PGSZ_IDX_4MB;
1850 ktsb_descr[0].pgsz_mask = HV_PGSZ_MASK_4MB;
1851 break;
Joe Perches6cb79b32011-06-03 14:45:23 +00001852 }
David S. Miller490384e2006-02-11 14:41:18 -08001853
David S. Miller3f19a842006-02-17 12:03:20 -08001854 ktsb_descr[0].assoc = 1;
David S. Miller490384e2006-02-11 14:41:18 -08001855 ktsb_descr[0].num_ttes = KERNEL_TSB_NENTRIES;
1856 ktsb_descr[0].ctx_idx = 0;
1857 ktsb_descr[0].tsb_base = ktsb_pa;
1858 ktsb_descr[0].resv = 0;
1859
David S. Millerd1acb422007-03-16 17:20:28 -07001860#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Miller4f93d212012-09-06 18:13:58 -07001861 /* Second KTSB for 4MB/256MB/2GB/16GB mappings. */
David S. Millerd7744a02006-02-21 22:31:11 -08001862 ktsb_pa = (kern_base +
1863 ((unsigned long)&swapper_4m_tsb[0] - KERNBASE));
1864
1865 ktsb_descr[1].pgsz_idx = HV_PGSZ_IDX_4MB;
David S. Millerc69ad0a2012-09-06 20:35:36 -07001866 ktsb_descr[1].pgsz_mask = ((HV_PGSZ_MASK_4MB |
1867 HV_PGSZ_MASK_256MB |
1868 HV_PGSZ_MASK_2GB |
1869 HV_PGSZ_MASK_16GB) &
1870 cpu_pgsz_mask);
David S. Millerd7744a02006-02-21 22:31:11 -08001871 ktsb_descr[1].assoc = 1;
1872 ktsb_descr[1].num_ttes = KERNEL_TSB4M_NENTRIES;
1873 ktsb_descr[1].ctx_idx = 0;
1874 ktsb_descr[1].tsb_base = ktsb_pa;
1875 ktsb_descr[1].resv = 0;
David S. Millerd1acb422007-03-16 17:20:28 -07001876#endif
David S. Miller490384e2006-02-11 14:41:18 -08001877}
1878
Paul Gortmaker2066aad2013-06-17 15:43:14 -04001879void sun4v_ktsb_register(void)
David S. Miller490384e2006-02-11 14:41:18 -08001880{
David S. Miller7db35f32007-05-29 02:22:14 -07001881 unsigned long pa, ret;
David S. Miller490384e2006-02-11 14:41:18 -08001882
1883 pa = kern_base + ((unsigned long)&ktsb_descr[0] - KERNBASE);
1884
David S. Miller7db35f32007-05-29 02:22:14 -07001885 ret = sun4v_mmu_tsb_ctx0(NUM_KTSB_DESCR, pa);
1886 if (ret != 0) {
1887 prom_printf("hypervisor_mmu_tsb_ctx0[%lx]: "
1888 "errors with %lx\n", pa, ret);
1889 prom_halt();
1890 }
David S. Miller490384e2006-02-11 14:41:18 -08001891}
1892
David S. Millerc69ad0a2012-09-06 20:35:36 -07001893static void __init sun4u_linear_pte_xor_finalize(void)
1894{
1895#ifndef CONFIG_DEBUG_PAGEALLOC
1896 /* This is where we would add Panther support for
1897 * 32MB and 256MB pages.
1898 */
1899#endif
1900}
1901
1902static void __init sun4v_linear_pte_xor_finalize(void)
1903{
1904#ifndef CONFIG_DEBUG_PAGEALLOC
1905 if (cpu_pgsz_mask & HV_PGSZ_MASK_256MB) {
1906 kern_linear_pte_xor[1] = (_PAGE_VALID | _PAGE_SZ256MB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07001907 PAGE_OFFSET;
David S. Millerc69ad0a2012-09-06 20:35:36 -07001908 kern_linear_pte_xor[1] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1909 _PAGE_P_4V | _PAGE_W_4V);
1910 } else {
1911 kern_linear_pte_xor[1] = kern_linear_pte_xor[0];
1912 }
1913
1914 if (cpu_pgsz_mask & HV_PGSZ_MASK_2GB) {
1915 kern_linear_pte_xor[2] = (_PAGE_VALID | _PAGE_SZ2GB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07001916 PAGE_OFFSET;
David S. Millerc69ad0a2012-09-06 20:35:36 -07001917 kern_linear_pte_xor[2] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1918 _PAGE_P_4V | _PAGE_W_4V);
1919 } else {
1920 kern_linear_pte_xor[2] = kern_linear_pte_xor[1];
1921 }
1922
1923 if (cpu_pgsz_mask & HV_PGSZ_MASK_16GB) {
1924 kern_linear_pte_xor[3] = (_PAGE_VALID | _PAGE_SZ16GB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07001925 PAGE_OFFSET;
David S. Millerc69ad0a2012-09-06 20:35:36 -07001926 kern_linear_pte_xor[3] |= (_PAGE_CP_4V | _PAGE_CV_4V |
1927 _PAGE_P_4V | _PAGE_W_4V);
1928 } else {
1929 kern_linear_pte_xor[3] = kern_linear_pte_xor[2];
1930 }
1931#endif
1932}
1933
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934/* paging_init() sets up the page tables */
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936static unsigned long last_valid_pfn;
David S. Millerac55c762014-09-26 21:19:46 -07001937
1938/* These must be page aligned in order to not trigger the
1939 * alignment tests of pgd_bad() and pud_bad().
1940 */
1941pgd_t swapper_pg_dir[PTRS_PER_PGD] __attribute__ ((aligned (PAGE_SIZE)));
1942static pud_t swapper_pud_dir[PTRS_PER_PUD] __attribute__ ((aligned (PAGE_SIZE)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
David S. Millerc4bce902006-02-11 21:57:54 -08001944static void sun4u_pgprot_init(void);
1945static void sun4v_pgprot_init(void);
1946
bob picco7c21d532014-09-16 09:29:54 -04001947static phys_addr_t __init available_memory(void)
1948{
1949 phys_addr_t available = 0ULL;
1950 phys_addr_t pa_start, pa_end;
1951 u64 i;
1952
1953 for_each_free_mem_range(i, NUMA_NO_NODE, &pa_start, &pa_end, NULL)
1954 available = available + (pa_end - pa_start);
1955
1956 return available;
1957}
1958
1959/* We need to exclude reserved regions. This exclusion will include
1960 * vmlinux and initrd. To be more precise the initrd size could be used to
1961 * compute a new lower limit because it is freed later during initialization.
1962 */
1963static void __init reduce_memory(phys_addr_t limit_ram)
1964{
1965 phys_addr_t avail_ram = available_memory();
1966 phys_addr_t pa_start, pa_end;
1967 u64 i;
1968
1969 if (limit_ram >= avail_ram)
1970 return;
1971
1972 for_each_free_mem_range(i, NUMA_NO_NODE, &pa_start, &pa_end, NULL) {
1973 phys_addr_t region_size = pa_end - pa_start;
1974 phys_addr_t clip_start = pa_start;
1975
1976 avail_ram = avail_ram - region_size;
1977 /* Are we consuming too much? */
1978 if (avail_ram < limit_ram) {
1979 phys_addr_t give_back = limit_ram - avail_ram;
1980
1981 region_size = region_size - give_back;
1982 clip_start = clip_start + give_back;
1983 }
1984
1985 memblock_remove(clip_start, region_size);
1986
1987 if (avail_ram <= limit_ram)
1988 break;
1989 i = 0UL;
1990 }
1991}
1992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993void __init paging_init(void)
1994{
David S. Miller919ee672008-04-23 05:40:25 -07001995 unsigned long end_pfn, shift, phys_base;
David S. Miller0836a0e2005-09-28 21:38:08 -07001996 unsigned long real_end, i;
David S. Millerac55c762014-09-26 21:19:46 -07001997 pud_t *pud;
1998 pmd_t *pmd;
Paul Gortmakeraa6f0792012-05-09 20:44:29 -04001999 int node;
David S. Miller0836a0e2005-09-28 21:38:08 -07002000
David S. Millerb2d43832013-09-20 21:50:41 -07002001 setup_page_offset();
2002
David S. Miller22adb352007-05-26 01:14:43 -07002003 /* These build time checkes make sure that the dcache_dirty_cpu()
2004 * page->flags usage will work.
2005 *
2006 * When a page gets marked as dcache-dirty, we store the
2007 * cpu number starting at bit 32 in the page->flags. Also,
2008 * functions like clear_dcache_dirty_cpu use the cpu mask
2009 * in 13-bit signed-immediate instruction fields.
2010 */
Christoph Lameter9223b412008-04-28 02:12:48 -07002011
2012 /*
2013 * Page flags must not reach into upper 32 bits that are used
2014 * for the cpu number
2015 */
2016 BUILD_BUG_ON(NR_PAGEFLAGS > 32);
2017
2018 /*
2019 * The bit fields placed in the high range must not reach below
2020 * the 32 bit boundary. Otherwise we cannot place the cpu field
2021 * at the 32 bit boundary.
2022 */
David S. Miller22adb352007-05-26 01:14:43 -07002023 BUILD_BUG_ON(SECTIONS_WIDTH + NODES_WIDTH + ZONES_WIDTH +
Christoph Lameter9223b412008-04-28 02:12:48 -07002024 ilog2(roundup_pow_of_two(NR_CPUS)) > 32);
2025
David S. Miller22adb352007-05-26 01:14:43 -07002026 BUILD_BUG_ON(NR_CPUS > 4096);
2027
David S. Miller0eef3312014-05-03 22:52:50 -07002028 kern_base = (prom_boot_mapping_phys_low >> ILOG2_4MB) << ILOG2_4MB;
David S. Miller481295f2006-02-07 21:51:08 -08002029 kern_size = (unsigned long)&_end - (unsigned long)KERNBASE;
2030
David S. Millerd7744a02006-02-21 22:31:11 -08002031 /* Invalidate both kernel TSBs. */
David S. Miller8b234272006-02-17 18:01:02 -08002032 memset(swapper_tsb, 0x40, sizeof(swapper_tsb));
David S. Millerd1acb422007-03-16 17:20:28 -07002033#ifndef CONFIG_DEBUG_PAGEALLOC
David S. Millerd7744a02006-02-21 22:31:11 -08002034 memset(swapper_4m_tsb, 0x40, sizeof(swapper_4m_tsb));
David S. Millerd1acb422007-03-16 17:20:28 -07002035#endif
David S. Miller8b234272006-02-17 18:01:02 -08002036
David S. Millerc4bce902006-02-11 21:57:54 -08002037 if (tlb_type == hypervisor)
2038 sun4v_pgprot_init();
2039 else
2040 sun4u_pgprot_init();
2041
David S. Millerd257d5d2006-02-06 23:44:37 -08002042 if (tlb_type == cheetah_plus ||
David S. Miller9076d0e2011-08-05 00:53:57 -07002043 tlb_type == hypervisor) {
David S. Miller517af332006-02-01 15:55:21 -08002044 tsb_phys_patch();
David S. Miller9076d0e2011-08-05 00:53:57 -07002045 ktsb_phys_patch();
2046 }
David S. Miller517af332006-02-01 15:55:21 -08002047
David S. Millerc69ad0a2012-09-06 20:35:36 -07002048 if (tlb_type == hypervisor)
David S. Millerd257d5d2006-02-06 23:44:37 -08002049 sun4v_patch_tlb_handlers();
2050
David S. Millera94a1722008-05-11 21:04:48 -07002051 /* Find available physical memory...
2052 *
2053 * Read it twice in order to work around a bug in openfirmware.
2054 * The call to grab this table itself can cause openfirmware to
2055 * allocate memory, which in turn can take away some space from
2056 * the list of available memory. Reading it twice makes sure
2057 * we really do get the final value.
2058 */
2059 read_obp_translations();
2060 read_obp_memory("reg", &pall[0], &pall_ents);
2061 read_obp_memory("available", &pavail[0], &pavail_ents);
David S. Miller13edad72005-09-29 17:58:26 -07002062 read_obp_memory("available", &pavail[0], &pavail_ents);
David S. Miller0836a0e2005-09-28 21:38:08 -07002063
2064 phys_base = 0xffffffffffffffffUL;
David S. Miller3b2a7e22008-02-13 18:13:20 -08002065 for (i = 0; i < pavail_ents; i++) {
David S. Miller13edad72005-09-29 17:58:26 -07002066 phys_base = min(phys_base, pavail[i].phys_addr);
Yinghai Lu95f72d12010-07-12 14:36:09 +10002067 memblock_add(pavail[i].phys_addr, pavail[i].reg_size);
David S. Miller3b2a7e22008-02-13 18:13:20 -08002068 }
2069
Yinghai Lu95f72d12010-07-12 14:36:09 +10002070 memblock_reserve(kern_base, kern_size);
David S. Miller0836a0e2005-09-28 21:38:08 -07002071
David S. Miller4e82c9a2008-02-13 18:00:03 -08002072 find_ramdisk(phys_base);
2073
bob picco7c21d532014-09-16 09:29:54 -04002074 if (cmdline_memory_size)
2075 reduce_memory(cmdline_memory_size);
David S. Miller25b0c652008-02-13 18:20:14 -08002076
Tejun Heo1aadc052011-12-08 10:22:08 -08002077 memblock_allow_resize();
Yinghai Lu95f72d12010-07-12 14:36:09 +10002078 memblock_dump_all();
David S. Miller3b2a7e22008-02-13 18:13:20 -08002079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 set_bit(0, mmu_context_bmap);
2081
David S. Miller2bdb3cb2005-09-22 01:08:57 -07002082 shift = kern_base + PAGE_OFFSET - ((unsigned long)KERNBASE);
2083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 real_end = (unsigned long)_end;
David S. Miller0eef3312014-05-03 22:52:50 -07002085 num_kernel_image_mappings = DIV_ROUND_UP(real_end - KERNBASE, 1 << ILOG2_4MB);
David S. Miller64658742008-03-21 17:01:38 -07002086 printk("Kernel: Using %d locked TLB entries for main kernel image.\n",
2087 num_kernel_image_mappings);
David S. Miller2bdb3cb2005-09-22 01:08:57 -07002088
2089 /* Set kernel pgd to upper alias so physical page computations
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 * work.
2091 */
2092 init_mm.pgd += ((shift) / (sizeof(pgd_t)));
2093
David S. Miller56425302005-09-25 16:46:57 -07002094 memset(swapper_low_pmd_dir, 0, sizeof(swapper_low_pmd_dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
David S. Millerac55c762014-09-26 21:19:46 -07002096 /* The kernel page tables we publish into what the rest of the
2097 * world sees must be adjusted so that they see the PAGE_OFFSET
2098 * address of these in-kerenel data structures. However right
2099 * here we must access them from the kernel image side, because
2100 * the trap tables haven't been taken over and therefore we cannot
2101 * take TLB misses in the PAGE_OFFSET linear mappings yet.
2102 */
2103 pud = swapper_pud_dir + (shift / sizeof(pud_t));
2104 pgd_set(&swapper_pg_dir[0], pud);
2105
2106 pmd = swapper_low_pmd_dir + (shift / sizeof(pmd_t));
2107 pud_set(&swapper_pud_dir[0], pmd);
David S. Miller0dd5b7b2014-09-24 20:56:11 -07002108
David S. Millerc9c10832005-10-12 12:22:46 -07002109 inherit_prom_mappings();
David S. Miller5085b4a2005-09-22 00:45:41 -07002110
David S. Millera8b900d2006-01-31 18:33:37 -08002111 /* Ok, we can use our TLB miss and window trap handlers safely. */
2112 setup_tba();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
David S. Millerc9c10832005-10-12 12:22:46 -07002114 __flush_tlb_all();
David S. Miller9ad98c52005-10-05 15:12:00 -07002115
David S. Millerad072002008-02-13 19:21:51 -08002116 prom_build_devicetree();
David S. Millerb696fdc2009-05-26 22:37:25 -07002117 of_populate_present_mask();
David S. Millerb99c6eb2009-06-18 01:44:19 -07002118#ifndef CONFIG_SMP
2119 of_fill_in_cpu_data();
2120#endif
David S. Millerad072002008-02-13 19:21:51 -08002121
David S. Miller890db402009-04-01 03:13:15 -07002122 if (tlb_type == hypervisor) {
David S. Miller4a283332008-02-13 19:22:23 -08002123 sun4v_mdesc_init();
Stephen Rothwell6ac5c612009-06-15 03:06:18 -07002124 mdesc_populate_present_mask(cpu_all_mask);
David S. Millerb99c6eb2009-06-18 01:44:19 -07002125#ifndef CONFIG_SMP
2126 mdesc_fill_in_cpu_data(cpu_all_mask);
2127#endif
David S. Millerce33fdc2012-09-06 19:01:25 -07002128 mdesc_get_page_sizes(cpu_all_mask, &cpu_pgsz_mask);
David S. Millerc69ad0a2012-09-06 20:35:36 -07002129
2130 sun4v_linear_pte_xor_finalize();
2131
2132 sun4v_ktsb_init();
2133 sun4v_ktsb_register();
David S. Millerce33fdc2012-09-06 19:01:25 -07002134 } else {
2135 unsigned long impl, ver;
2136
2137 cpu_pgsz_mask = (HV_PGSZ_MASK_8K | HV_PGSZ_MASK_64K |
2138 HV_PGSZ_MASK_512K | HV_PGSZ_MASK_4MB);
2139
2140 __asm__ __volatile__("rdpr %%ver, %0" : "=r" (ver));
2141 impl = ((ver >> 32) & 0xffff);
2142 if (impl == PANTHER_IMPL)
2143 cpu_pgsz_mask |= (HV_PGSZ_MASK_32MB |
2144 HV_PGSZ_MASK_256MB);
David S. Millerc69ad0a2012-09-06 20:35:36 -07002145
2146 sun4u_linear_pte_xor_finalize();
David S. Miller890db402009-04-01 03:13:15 -07002147 }
David S. Miller4a283332008-02-13 19:22:23 -08002148
David S. Millerc69ad0a2012-09-06 20:35:36 -07002149 /* Flush the TLBs and the 4M TSB so that the updated linear
2150 * pte XOR settings are realized for all mappings.
2151 */
2152 __flush_tlb_all();
2153#ifndef CONFIG_DEBUG_PAGEALLOC
2154 memset(swapper_4m_tsb, 0x40, sizeof(swapper_4m_tsb));
2155#endif
2156 __flush_tlb_all();
2157
David S. Miller2bdb3cb2005-09-22 01:08:57 -07002158 /* Setup bootmem... */
David S. Miller919ee672008-04-23 05:40:25 -07002159 last_valid_pfn = end_pfn = bootmem_init(phys_base);
David S. Millerd1112012006-03-08 02:16:07 -08002160
David S. Miller5ed56f12012-04-26 20:50:34 -07002161 /* Once the OF device tree and MDESC have been setup, we know
2162 * the list of possible cpus. Therefore we can allocate the
2163 * IRQ stacks.
2164 */
2165 for_each_possible_cpu(i) {
Paul Gortmakeraa6f0792012-05-09 20:44:29 -04002166 node = cpu_to_node(i);
David S. Miller5ed56f12012-04-26 20:50:34 -07002167
2168 softirq_stack[i] = __alloc_bootmem_node(NODE_DATA(node),
2169 THREAD_SIZE,
2170 THREAD_SIZE, 0);
2171 hardirq_stack[i] = __alloc_bootmem_node(NODE_DATA(node),
2172 THREAD_SIZE,
2173 THREAD_SIZE, 0);
2174 }
2175
David S. Miller56425302005-09-25 16:46:57 -07002176 kernel_physical_mapping_init();
David S. Miller56425302005-09-25 16:46:57 -07002177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 {
David S. Miller919ee672008-04-23 05:40:25 -07002179 unsigned long max_zone_pfns[MAX_NR_ZONES];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
David S. Miller919ee672008-04-23 05:40:25 -07002181 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
David S. Miller919ee672008-04-23 05:40:25 -07002183 max_zone_pfns[ZONE_NORMAL] = end_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
David S. Miller919ee672008-04-23 05:40:25 -07002185 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 }
2187
David S. Miller3c62a2d2008-02-17 23:22:50 -08002188 printk("Booting Linux...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189}
2190
Greg Kroah-Hartman7c9503b2012-12-21 14:03:26 -08002191int page_in_phys_avail(unsigned long paddr)
David S. Miller919ee672008-04-23 05:40:25 -07002192{
2193 int i;
2194
2195 paddr &= PAGE_MASK;
2196
2197 for (i = 0; i < pavail_ents; i++) {
2198 unsigned long start, end;
2199
2200 start = pavail[i].phys_addr;
2201 end = start + pavail[i].reg_size;
2202
2203 if (paddr >= start && paddr < end)
2204 return 1;
2205 }
2206 if (paddr >= kern_base && paddr < (kern_base + kern_size))
2207 return 1;
2208#ifdef CONFIG_BLK_DEV_INITRD
2209 if (paddr >= __pa(initrd_start) &&
2210 paddr < __pa(PAGE_ALIGN(initrd_end)))
2211 return 1;
2212#endif
2213
2214 return 0;
2215}
2216
Yinghai Lu961f8fa2012-11-16 19:39:21 -08002217static void __init register_page_bootmem_info(void)
2218{
2219#ifdef CONFIG_NEED_MULTIPLE_NODES
2220 int i;
2221
2222 for_each_online_node(i)
2223 if (NODE_DATA(i)->node_spanned_pages)
2224 register_page_bootmem_info_node(NODE_DATA(i));
2225#endif
2226}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227void __init mem_init(void)
2228{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 high_memory = __va(last_valid_pfn << PAGE_SHIFT);
2230
Yinghai Lu961f8fa2012-11-16 19:39:21 -08002231 register_page_bootmem_info();
Jiang Liu0c988532013-07-03 15:03:24 -07002232 free_all_bootmem();
David S. Miller919ee672008-04-23 05:40:25 -07002233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 /*
2235 * Set up the zero page, mark it reserved, so that page count
2236 * is not manipulated when freeing the page from user ptes.
2237 */
2238 mem_map_zero = alloc_pages(GFP_KERNEL|__GFP_ZERO, 0);
2239 if (mem_map_zero == NULL) {
2240 prom_printf("paging_init: Cannot alloc zero page.\n");
2241 prom_halt();
2242 }
Jiang Liu70affe42013-05-07 16:18:08 -07002243 mark_page_reserved(mem_map_zero);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Jiang Liudceccbe2013-07-03 15:04:14 -07002245 mem_init_print_info(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
2247 if (tlb_type == cheetah || tlb_type == cheetah_plus)
2248 cheetah_ecache_flush_init();
2249}
2250
David S. Miller898cf0e2005-09-23 11:59:44 -07002251void free_initmem(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252{
2253 unsigned long addr, initend;
David S. Millerf2b60792008-08-14 01:45:41 -07002254 int do_free = 1;
2255
2256 /* If the physical memory maps were trimmed by kernel command
2257 * line options, don't even try freeing this initmem stuff up.
2258 * The kernel image could have been in the trimmed out region
2259 * and if so the freeing below will free invalid page structs.
2260 */
2261 if (cmdline_memory_size)
2262 do_free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
2264 /*
2265 * The init section is aligned to 8k in vmlinux.lds. Page align for >8k pagesizes.
2266 */
2267 addr = PAGE_ALIGN((unsigned long)(__init_begin));
2268 initend = (unsigned long)(__init_end) & PAGE_MASK;
2269 for (; addr < initend; addr += PAGE_SIZE) {
2270 unsigned long page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
2272 page = (addr +
2273 ((unsigned long) __va(kern_base)) -
2274 ((unsigned long) KERNBASE));
Randy Dunlapc9cf5522006-06-27 02:53:52 -07002275 memset((void *)addr, POISON_FREE_INITMEM, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
Jiang Liu70affe42013-05-07 16:18:08 -07002277 if (do_free)
2278 free_reserved_page(virt_to_page(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 }
2280}
2281
2282#ifdef CONFIG_BLK_DEV_INITRD
2283void free_initrd_mem(unsigned long start, unsigned long end)
2284{
Jiang Liudceccbe2013-07-03 15:04:14 -07002285 free_reserved_area((void *)start, (void *)end, POISON_FREE_INITMEM,
2286 "initrd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287}
2288#endif
David S. Millerc4bce902006-02-11 21:57:54 -08002289
David S. Millerc4bce902006-02-11 21:57:54 -08002290#define _PAGE_CACHE_4U (_PAGE_CP_4U | _PAGE_CV_4U)
2291#define _PAGE_CACHE_4V (_PAGE_CP_4V | _PAGE_CV_4V)
2292#define __DIRTY_BITS_4U (_PAGE_MODIFIED_4U | _PAGE_WRITE_4U | _PAGE_W_4U)
2293#define __DIRTY_BITS_4V (_PAGE_MODIFIED_4V | _PAGE_WRITE_4V | _PAGE_W_4V)
2294#define __ACCESS_BITS_4U (_PAGE_ACCESSED_4U | _PAGE_READ_4U | _PAGE_R)
2295#define __ACCESS_BITS_4V (_PAGE_ACCESSED_4V | _PAGE_READ_4V | _PAGE_R)
2296
2297pgprot_t PAGE_KERNEL __read_mostly;
2298EXPORT_SYMBOL(PAGE_KERNEL);
2299
2300pgprot_t PAGE_KERNEL_LOCKED __read_mostly;
2301pgprot_t PAGE_COPY __read_mostly;
David S. Miller0f159522006-02-18 12:43:16 -08002302
2303pgprot_t PAGE_SHARED __read_mostly;
2304EXPORT_SYMBOL(PAGE_SHARED);
2305
David S. Millerc4bce902006-02-11 21:57:54 -08002306unsigned long pg_iobits __read_mostly;
2307
2308unsigned long _PAGE_IE __read_mostly;
David S. Miller987c74f2006-06-25 01:34:43 -07002309EXPORT_SYMBOL(_PAGE_IE);
David S. Millerb2bef442006-02-23 01:55:55 -08002310
David S. Millerc4bce902006-02-11 21:57:54 -08002311unsigned long _PAGE_E __read_mostly;
David S. Millerb2bef442006-02-23 01:55:55 -08002312EXPORT_SYMBOL(_PAGE_E);
2313
David S. Millerc4bce902006-02-11 21:57:54 -08002314unsigned long _PAGE_CACHE __read_mostly;
David S. Millerb2bef442006-02-23 01:55:55 -08002315EXPORT_SYMBOL(_PAGE_CACHE);
David S. Millerc4bce902006-02-11 21:57:54 -08002316
David Miller46644c22007-10-16 01:24:16 -07002317#ifdef CONFIG_SPARSEMEM_VMEMMAP
Johannes Weiner0aad8182013-04-29 15:07:50 -07002318int __meminit vmemmap_populate(unsigned long vstart, unsigned long vend,
2319 int node)
David Miller46644c22007-10-16 01:24:16 -07002320{
David Miller46644c22007-10-16 01:24:16 -07002321 unsigned long pte_base;
2322
2323 pte_base = (_PAGE_VALID | _PAGE_SZ4MB_4U |
2324 _PAGE_CP_4U | _PAGE_CV_4U |
2325 _PAGE_P_4U | _PAGE_W_4U);
2326 if (tlb_type == hypervisor)
2327 pte_base = (_PAGE_VALID | _PAGE_SZ4MB_4V |
2328 _PAGE_CP_4V | _PAGE_CV_4V |
2329 _PAGE_P_4V | _PAGE_W_4V);
2330
David S. Millerc06240c2014-09-24 21:20:14 -07002331 pte_base |= _PAGE_PMD_HUGE;
David Miller46644c22007-10-16 01:24:16 -07002332
David S. Millerc06240c2014-09-24 21:20:14 -07002333 vstart = vstart & PMD_MASK;
2334 vend = ALIGN(vend, PMD_SIZE);
2335 for (; vstart < vend; vstart += PMD_SIZE) {
2336 pgd_t *pgd = pgd_offset_k(vstart);
2337 unsigned long pte;
2338 pud_t *pud;
2339 pmd_t *pmd;
2340
2341 if (pgd_none(*pgd)) {
2342 pud_t *new = vmemmap_alloc_block(PAGE_SIZE, node);
2343
2344 if (!new)
2345 return -ENOMEM;
2346 pgd_populate(&init_mm, pgd, new);
2347 }
2348
2349 pud = pud_offset(pgd, vstart);
2350 if (pud_none(*pud)) {
2351 pmd_t *new = vmemmap_alloc_block(PAGE_SIZE, node);
2352
2353 if (!new)
2354 return -ENOMEM;
2355 pud_populate(&init_mm, pud, new);
2356 }
2357
2358 pmd = pmd_offset(pud, vstart);
2359
2360 pte = pmd_val(*pmd);
2361 if (!(pte & _PAGE_VALID)) {
2362 void *block = vmemmap_alloc_block(PMD_SIZE, node);
2363
David Miller46644c22007-10-16 01:24:16 -07002364 if (!block)
2365 return -ENOMEM;
2366
David S. Millerc06240c2014-09-24 21:20:14 -07002367 pmd_val(*pmd) = pte_base | __pa(block);
David Miller46644c22007-10-16 01:24:16 -07002368 }
2369 }
David S. Miller2856cc22012-08-15 00:37:29 -07002370
David S. Millerc06240c2014-09-24 21:20:14 -07002371 return 0;
David S. Miller2856cc22012-08-15 00:37:29 -07002372}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -08002373
Johannes Weiner0aad8182013-04-29 15:07:50 -07002374void vmemmap_free(unsigned long start, unsigned long end)
Tang Chen01975182013-02-22 16:33:08 -08002375{
2376}
David Miller46644c22007-10-16 01:24:16 -07002377#endif /* CONFIG_SPARSEMEM_VMEMMAP */
2378
David S. Millerc4bce902006-02-11 21:57:54 -08002379static void prot_init_common(unsigned long page_none,
2380 unsigned long page_shared,
2381 unsigned long page_copy,
2382 unsigned long page_readonly,
2383 unsigned long page_exec_bit)
2384{
2385 PAGE_COPY = __pgprot(page_copy);
David S. Miller0f159522006-02-18 12:43:16 -08002386 PAGE_SHARED = __pgprot(page_shared);
David S. Millerc4bce902006-02-11 21:57:54 -08002387
2388 protection_map[0x0] = __pgprot(page_none);
2389 protection_map[0x1] = __pgprot(page_readonly & ~page_exec_bit);
2390 protection_map[0x2] = __pgprot(page_copy & ~page_exec_bit);
2391 protection_map[0x3] = __pgprot(page_copy & ~page_exec_bit);
2392 protection_map[0x4] = __pgprot(page_readonly);
2393 protection_map[0x5] = __pgprot(page_readonly);
2394 protection_map[0x6] = __pgprot(page_copy);
2395 protection_map[0x7] = __pgprot(page_copy);
2396 protection_map[0x8] = __pgprot(page_none);
2397 protection_map[0x9] = __pgprot(page_readonly & ~page_exec_bit);
2398 protection_map[0xa] = __pgprot(page_shared & ~page_exec_bit);
2399 protection_map[0xb] = __pgprot(page_shared & ~page_exec_bit);
2400 protection_map[0xc] = __pgprot(page_readonly);
2401 protection_map[0xd] = __pgprot(page_readonly);
2402 protection_map[0xe] = __pgprot(page_shared);
2403 protection_map[0xf] = __pgprot(page_shared);
2404}
2405
2406static void __init sun4u_pgprot_init(void)
2407{
2408 unsigned long page_none, page_shared, page_copy, page_readonly;
2409 unsigned long page_exec_bit;
David S. Miller4f93d212012-09-06 18:13:58 -07002410 int i;
David S. Millerc4bce902006-02-11 21:57:54 -08002411
2412 PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
2413 _PAGE_CACHE_4U | _PAGE_P_4U |
2414 __ACCESS_BITS_4U | __DIRTY_BITS_4U |
2415 _PAGE_EXEC_4U);
2416 PAGE_KERNEL_LOCKED = __pgprot (_PAGE_PRESENT_4U | _PAGE_VALID |
2417 _PAGE_CACHE_4U | _PAGE_P_4U |
2418 __ACCESS_BITS_4U | __DIRTY_BITS_4U |
2419 _PAGE_EXEC_4U | _PAGE_L_4U);
David S. Millerc4bce902006-02-11 21:57:54 -08002420
2421 _PAGE_IE = _PAGE_IE_4U;
2422 _PAGE_E = _PAGE_E_4U;
2423 _PAGE_CACHE = _PAGE_CACHE_4U;
2424
2425 pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4U | __DIRTY_BITS_4U |
2426 __ACCESS_BITS_4U | _PAGE_E_4U);
2427
David S. Millerd1acb422007-03-16 17:20:28 -07002428#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller922631b2013-09-18 12:00:00 -07002429 kern_linear_pte_xor[0] = _PAGE_VALID ^ PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002430#else
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002431 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4U) ^
David S. Miller922631b2013-09-18 12:00:00 -07002432 PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002433#endif
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002434 kern_linear_pte_xor[0] |= (_PAGE_CP_4U | _PAGE_CV_4U |
2435 _PAGE_P_4U | _PAGE_W_4U);
2436
David S. Miller4f93d212012-09-06 18:13:58 -07002437 for (i = 1; i < 4; i++)
2438 kern_linear_pte_xor[i] = kern_linear_pte_xor[0];
David S. Millerc4bce902006-02-11 21:57:54 -08002439
David S. Millerc4bce902006-02-11 21:57:54 -08002440 _PAGE_ALL_SZ_BITS = (_PAGE_SZ4MB_4U | _PAGE_SZ512K_4U |
2441 _PAGE_SZ64K_4U | _PAGE_SZ8K_4U |
2442 _PAGE_SZ32MB_4U | _PAGE_SZ256MB_4U);
2443
2444
2445 page_none = _PAGE_PRESENT_4U | _PAGE_ACCESSED_4U | _PAGE_CACHE_4U;
2446 page_shared = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
2447 __ACCESS_BITS_4U | _PAGE_WRITE_4U | _PAGE_EXEC_4U);
2448 page_copy = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
2449 __ACCESS_BITS_4U | _PAGE_EXEC_4U);
2450 page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4U | _PAGE_CACHE_4U |
2451 __ACCESS_BITS_4U | _PAGE_EXEC_4U);
2452
2453 page_exec_bit = _PAGE_EXEC_4U;
2454
2455 prot_init_common(page_none, page_shared, page_copy, page_readonly,
2456 page_exec_bit);
2457}
2458
2459static void __init sun4v_pgprot_init(void)
2460{
2461 unsigned long page_none, page_shared, page_copy, page_readonly;
2462 unsigned long page_exec_bit;
David S. Miller4f93d212012-09-06 18:13:58 -07002463 int i;
David S. Millerc4bce902006-02-11 21:57:54 -08002464
2465 PAGE_KERNEL = __pgprot (_PAGE_PRESENT_4V | _PAGE_VALID |
2466 _PAGE_CACHE_4V | _PAGE_P_4V |
2467 __ACCESS_BITS_4V | __DIRTY_BITS_4V |
2468 _PAGE_EXEC_4V);
2469 PAGE_KERNEL_LOCKED = PAGE_KERNEL;
David S. Millerc4bce902006-02-11 21:57:54 -08002470
2471 _PAGE_IE = _PAGE_IE_4V;
2472 _PAGE_E = _PAGE_E_4V;
2473 _PAGE_CACHE = _PAGE_CACHE_4V;
2474
David S. Millerd1acb422007-03-16 17:20:28 -07002475#ifdef CONFIG_DEBUG_PAGEALLOC
David S. Miller922631b2013-09-18 12:00:00 -07002476 kern_linear_pte_xor[0] = _PAGE_VALID ^ PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002477#else
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002478 kern_linear_pte_xor[0] = (_PAGE_VALID | _PAGE_SZ4MB_4V) ^
David S. Miller922631b2013-09-18 12:00:00 -07002479 PAGE_OFFSET;
David S. Millerd1acb422007-03-16 17:20:28 -07002480#endif
David S. Miller9cc3a1a2006-02-21 20:51:13 -08002481 kern_linear_pte_xor[0] |= (_PAGE_CP_4V | _PAGE_CV_4V |
2482 _PAGE_P_4V | _PAGE_W_4V);
2483
David S. Millerc69ad0a2012-09-06 20:35:36 -07002484 for (i = 1; i < 4; i++)
2485 kern_linear_pte_xor[i] = kern_linear_pte_xor[0];
David S. Miller4f93d212012-09-06 18:13:58 -07002486
David S. Millerc4bce902006-02-11 21:57:54 -08002487 pg_iobits = (_PAGE_VALID | _PAGE_PRESENT_4V | __DIRTY_BITS_4V |
2488 __ACCESS_BITS_4V | _PAGE_E_4V);
2489
David S. Millerc4bce902006-02-11 21:57:54 -08002490 _PAGE_ALL_SZ_BITS = (_PAGE_SZ16GB_4V | _PAGE_SZ2GB_4V |
2491 _PAGE_SZ256MB_4V | _PAGE_SZ32MB_4V |
2492 _PAGE_SZ4MB_4V | _PAGE_SZ512K_4V |
2493 _PAGE_SZ64K_4V | _PAGE_SZ8K_4V);
2494
2495 page_none = _PAGE_PRESENT_4V | _PAGE_ACCESSED_4V | _PAGE_CACHE_4V;
2496 page_shared = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
2497 __ACCESS_BITS_4V | _PAGE_WRITE_4V | _PAGE_EXEC_4V);
2498 page_copy = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
2499 __ACCESS_BITS_4V | _PAGE_EXEC_4V);
2500 page_readonly = (_PAGE_VALID | _PAGE_PRESENT_4V | _PAGE_CACHE_4V |
2501 __ACCESS_BITS_4V | _PAGE_EXEC_4V);
2502
2503 page_exec_bit = _PAGE_EXEC_4V;
2504
2505 prot_init_common(page_none, page_shared, page_copy, page_readonly,
2506 page_exec_bit);
2507}
2508
2509unsigned long pte_sz_bits(unsigned long sz)
2510{
2511 if (tlb_type == hypervisor) {
2512 switch (sz) {
2513 case 8 * 1024:
2514 default:
2515 return _PAGE_SZ8K_4V;
2516 case 64 * 1024:
2517 return _PAGE_SZ64K_4V;
2518 case 512 * 1024:
2519 return _PAGE_SZ512K_4V;
2520 case 4 * 1024 * 1024:
2521 return _PAGE_SZ4MB_4V;
Joe Perches6cb79b32011-06-03 14:45:23 +00002522 }
David S. Millerc4bce902006-02-11 21:57:54 -08002523 } else {
2524 switch (sz) {
2525 case 8 * 1024:
2526 default:
2527 return _PAGE_SZ8K_4U;
2528 case 64 * 1024:
2529 return _PAGE_SZ64K_4U;
2530 case 512 * 1024:
2531 return _PAGE_SZ512K_4U;
2532 case 4 * 1024 * 1024:
2533 return _PAGE_SZ4MB_4U;
Joe Perches6cb79b32011-06-03 14:45:23 +00002534 }
David S. Millerc4bce902006-02-11 21:57:54 -08002535 }
2536}
2537
2538pte_t mk_pte_io(unsigned long page, pgprot_t prot, int space, unsigned long page_size)
2539{
2540 pte_t pte;
David S. Millercf627152006-02-12 21:10:07 -08002541
2542 pte_val(pte) = page | pgprot_val(pgprot_noncached(prot));
David S. Millerc4bce902006-02-11 21:57:54 -08002543 pte_val(pte) |= (((unsigned long)space) << 32);
2544 pte_val(pte) |= pte_sz_bits(page_size);
David S. Millercf627152006-02-12 21:10:07 -08002545
David S. Millerc4bce902006-02-11 21:57:54 -08002546 return pte;
2547}
2548
David S. Millerc4bce902006-02-11 21:57:54 -08002549static unsigned long kern_large_tte(unsigned long paddr)
2550{
2551 unsigned long val;
2552
2553 val = (_PAGE_VALID | _PAGE_SZ4MB_4U |
2554 _PAGE_CP_4U | _PAGE_CV_4U | _PAGE_P_4U |
2555 _PAGE_EXEC_4U | _PAGE_L_4U | _PAGE_W_4U);
2556 if (tlb_type == hypervisor)
2557 val = (_PAGE_VALID | _PAGE_SZ4MB_4V |
2558 _PAGE_CP_4V | _PAGE_CV_4V | _PAGE_P_4V |
2559 _PAGE_EXEC_4V | _PAGE_W_4V);
2560
2561 return val | paddr;
2562}
2563
David S. Millerc4bce902006-02-11 21:57:54 -08002564/* If not locked, zap it. */
2565void __flush_tlb_all(void)
2566{
2567 unsigned long pstate;
2568 int i;
2569
2570 __asm__ __volatile__("flushw\n\t"
2571 "rdpr %%pstate, %0\n\t"
2572 "wrpr %0, %1, %%pstate"
2573 : "=r" (pstate)
2574 : "i" (PSTATE_IE));
David S. Miller8f3614532007-12-13 06:13:38 -08002575 if (tlb_type == hypervisor) {
2576 sun4v_mmu_demap_all();
2577 } else if (tlb_type == spitfire) {
David S. Millerc4bce902006-02-11 21:57:54 -08002578 for (i = 0; i < 64; i++) {
2579 /* Spitfire Errata #32 workaround */
2580 /* NOTE: Always runs on spitfire, so no
2581 * cheetah+ page size encodings.
2582 */
2583 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
2584 "flush %%g6"
2585 : /* No outputs */
2586 : "r" (0),
2587 "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
2588
2589 if (!(spitfire_get_dtlb_data(i) & _PAGE_L_4U)) {
2590 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
2591 "membar #Sync"
2592 : /* no outputs */
2593 : "r" (TLB_TAG_ACCESS), "i" (ASI_DMMU));
2594 spitfire_put_dtlb_data(i, 0x0UL);
2595 }
2596
2597 /* Spitfire Errata #32 workaround */
2598 /* NOTE: Always runs on spitfire, so no
2599 * cheetah+ page size encodings.
2600 */
2601 __asm__ __volatile__("stxa %0, [%1] %2\n\t"
2602 "flush %%g6"
2603 : /* No outputs */
2604 : "r" (0),
2605 "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
2606
2607 if (!(spitfire_get_itlb_data(i) & _PAGE_L_4U)) {
2608 __asm__ __volatile__("stxa %%g0, [%0] %1\n\t"
2609 "membar #Sync"
2610 : /* no outputs */
2611 : "r" (TLB_TAG_ACCESS), "i" (ASI_IMMU));
2612 spitfire_put_itlb_data(i, 0x0UL);
2613 }
2614 }
2615 } else if (tlb_type == cheetah || tlb_type == cheetah_plus) {
2616 cheetah_flush_dtlb_all();
2617 cheetah_flush_itlb_all();
2618 }
2619 __asm__ __volatile__("wrpr %0, 0, %%pstate"
2620 : : "r" (pstate));
2621}
David Millerc460bec2012-10-08 16:34:22 -07002622
David Millerc460bec2012-10-08 16:34:22 -07002623pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
2624 unsigned long address)
2625{
David S. Miller37b3a8f2013-09-25 13:48:49 -07002626 struct page *page = alloc_page(GFP_KERNEL | __GFP_NOTRACK |
2627 __GFP_REPEAT | __GFP_ZERO);
2628 pte_t *pte = NULL;
David Millerc460bec2012-10-08 16:34:22 -07002629
David Millerc460bec2012-10-08 16:34:22 -07002630 if (page)
2631 pte = (pte_t *) page_address(page);
2632
2633 return pte;
2634}
2635
2636pgtable_t pte_alloc_one(struct mm_struct *mm,
2637 unsigned long address)
2638{
David S. Miller37b3a8f2013-09-25 13:48:49 -07002639 struct page *page = alloc_page(GFP_KERNEL | __GFP_NOTRACK |
2640 __GFP_REPEAT | __GFP_ZERO);
Kirill A. Shutemov1ae9ae52013-11-14 14:31:42 -08002641 if (!page)
2642 return NULL;
2643 if (!pgtable_page_ctor(page)) {
2644 free_hot_cold_page(page, 0);
2645 return NULL;
David Millerc460bec2012-10-08 16:34:22 -07002646 }
Kirill A. Shutemov1ae9ae52013-11-14 14:31:42 -08002647 return (pte_t *) page_address(page);
David Millerc460bec2012-10-08 16:34:22 -07002648}
2649
2650void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
2651{
David S. Miller37b3a8f2013-09-25 13:48:49 -07002652 free_page((unsigned long)pte);
David Millerc460bec2012-10-08 16:34:22 -07002653}
2654
2655static void __pte_free(pgtable_t pte)
2656{
2657 struct page *page = virt_to_page(pte);
David S. Miller37b3a8f2013-09-25 13:48:49 -07002658
2659 pgtable_page_dtor(page);
2660 __free_page(page);
David Millerc460bec2012-10-08 16:34:22 -07002661}
2662
2663void pte_free(struct mm_struct *mm, pgtable_t pte)
2664{
2665 __pte_free(pte);
2666}
2667
2668void pgtable_free(void *table, bool is_page)
2669{
2670 if (is_page)
2671 __pte_free(table);
2672 else
2673 kmem_cache_free(pgtable_cache, table);
2674}
David Miller9e695d22012-10-08 16:34:29 -07002675
2676#ifdef CONFIG_TRANSPARENT_HUGEPAGE
David Miller9e695d22012-10-08 16:34:29 -07002677void update_mmu_cache_pmd(struct vm_area_struct *vma, unsigned long addr,
2678 pmd_t *pmd)
2679{
2680 unsigned long pte, flags;
2681 struct mm_struct *mm;
2682 pmd_t entry = *pmd;
David Miller9e695d22012-10-08 16:34:29 -07002683
2684 if (!pmd_large(entry) || !pmd_young(entry))
2685 return;
2686
David S. Millera7b94032013-09-26 13:45:15 -07002687 pte = pmd_val(entry);
David Miller9e695d22012-10-08 16:34:29 -07002688
David S. Miller18f38132014-08-04 16:34:01 -07002689 /* Don't insert a non-valid PMD into the TSB, we'll deadlock. */
2690 if (!(pte & _PAGE_VALID))
2691 return;
2692
David S. Miller37b3a8f2013-09-25 13:48:49 -07002693 /* We are fabricating 8MB pages using 4MB real hw pages. */
2694 pte |= (addr & (1UL << REAL_HPAGE_SHIFT));
David Miller9e695d22012-10-08 16:34:29 -07002695
2696 mm = vma->vm_mm;
2697
2698 spin_lock_irqsave(&mm->context.lock, flags);
2699
2700 if (mm->context.tsb_block[MM_TSB_HUGE].tsb != NULL)
David S. Miller37b3a8f2013-09-25 13:48:49 -07002701 __update_mmu_tsb_insert(mm, MM_TSB_HUGE, REAL_HPAGE_SHIFT,
David Miller9e695d22012-10-08 16:34:29 -07002702 addr, pte);
2703
2704 spin_unlock_irqrestore(&mm->context.lock, flags);
2705}
2706#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
2707
2708#if defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE)
2709static void context_reload(void *__data)
2710{
2711 struct mm_struct *mm = __data;
2712
2713 if (mm == current->mm)
2714 load_secondary_context(mm);
2715}
2716
David S. Miller0fbebed2013-02-19 22:34:10 -08002717void hugetlb_setup(struct pt_regs *regs)
David Miller9e695d22012-10-08 16:34:29 -07002718{
David S. Miller0fbebed2013-02-19 22:34:10 -08002719 struct mm_struct *mm = current->mm;
2720 struct tsb_config *tp;
David Miller9e695d22012-10-08 16:34:29 -07002721
David S. Miller0fbebed2013-02-19 22:34:10 -08002722 if (in_atomic() || !mm) {
2723 const struct exception_table_entry *entry;
David Miller9e695d22012-10-08 16:34:29 -07002724
David S. Miller0fbebed2013-02-19 22:34:10 -08002725 entry = search_exception_tables(regs->tpc);
2726 if (entry) {
2727 regs->tpc = entry->fixup;
2728 regs->tnpc = regs->tpc + 4;
2729 return;
2730 }
2731 pr_alert("Unexpected HugeTLB setup in atomic context.\n");
2732 die_if_kernel("HugeTSB in atomic", regs);
2733 }
2734
2735 tp = &mm->context.tsb_block[MM_TSB_HUGE];
2736 if (likely(tp->tsb == NULL))
2737 tsb_grow(mm, MM_TSB_HUGE, 0);
2738
David Miller9e695d22012-10-08 16:34:29 -07002739 tsb_context_switch(mm);
2740 smp_tsb_sync(mm);
2741
2742 /* On UltraSPARC-III+ and later, configure the second half of
2743 * the Data-TLB for huge pages.
2744 */
2745 if (tlb_type == cheetah_plus) {
2746 unsigned long ctx;
2747
2748 spin_lock(&ctx_alloc_lock);
2749 ctx = mm->context.sparc64_ctx_val;
2750 ctx &= ~CTX_PGSZ_MASK;
2751 ctx |= CTX_PGSZ_BASE << CTX_PGSZ0_SHIFT;
2752 ctx |= CTX_PGSZ_HUGE << CTX_PGSZ1_SHIFT;
2753
2754 if (ctx != mm->context.sparc64_ctx_val) {
2755 /* When changing the page size fields, we
2756 * must perform a context flush so that no
2757 * stale entries match. This flush must
2758 * occur with the original context register
2759 * settings.
2760 */
2761 do_flush_tlb_mm(mm);
2762
2763 /* Reload the context register of all processors
2764 * also executing in this address space.
2765 */
2766 mm->context.sparc64_ctx_val = ctx;
2767 on_each_cpu(context_reload, mm, 0);
2768 }
2769 spin_unlock(&ctx_alloc_lock);
2770 }
2771}
2772#endif
bob piccof6d4fb52014-03-03 11:54:42 -05002773
2774static struct resource code_resource = {
2775 .name = "Kernel code",
2776 .flags = IORESOURCE_BUSY | IORESOURCE_MEM
2777};
2778
2779static struct resource data_resource = {
2780 .name = "Kernel data",
2781 .flags = IORESOURCE_BUSY | IORESOURCE_MEM
2782};
2783
2784static struct resource bss_resource = {
2785 .name = "Kernel bss",
2786 .flags = IORESOURCE_BUSY | IORESOURCE_MEM
2787};
2788
2789static inline resource_size_t compute_kern_paddr(void *addr)
2790{
2791 return (resource_size_t) (addr - KERNBASE + kern_base);
2792}
2793
2794static void __init kernel_lds_init(void)
2795{
2796 code_resource.start = compute_kern_paddr(_text);
2797 code_resource.end = compute_kern_paddr(_etext - 1);
2798 data_resource.start = compute_kern_paddr(_etext);
2799 data_resource.end = compute_kern_paddr(_edata - 1);
2800 bss_resource.start = compute_kern_paddr(__bss_start);
2801 bss_resource.end = compute_kern_paddr(_end - 1);
2802}
2803
2804static int __init report_memory(void)
2805{
2806 int i;
2807 struct resource *res;
2808
2809 kernel_lds_init();
2810
2811 for (i = 0; i < pavail_ents; i++) {
2812 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
2813
2814 if (!res) {
2815 pr_warn("Failed to allocate source.\n");
2816 break;
2817 }
2818
2819 res->name = "System RAM";
2820 res->start = pavail[i].phys_addr;
2821 res->end = pavail[i].phys_addr + pavail[i].reg_size - 1;
2822 res->flags = IORESOURCE_BUSY | IORESOURCE_MEM;
2823
2824 if (insert_resource(&iomem_resource, res) < 0) {
2825 pr_warn("Resource insertion failed.\n");
2826 break;
2827 }
2828
2829 insert_resource(res, &code_resource);
2830 insert_resource(res, &data_resource);
2831 insert_resource(res, &bss_resource);
2832 }
2833
2834 return 0;
2835}
2836device_initcall(report_memory);
David S. Millere9011d02014-08-05 18:57:18 -07002837
David S. Miller4ca9a232014-08-04 20:07:37 -07002838#ifdef CONFIG_SMP
2839#define do_flush_tlb_kernel_range smp_flush_tlb_kernel_range
2840#else
2841#define do_flush_tlb_kernel_range __flush_tlb_kernel_range
2842#endif
2843
2844void flush_tlb_kernel_range(unsigned long start, unsigned long end)
2845{
2846 if (start < HI_OBP_ADDRESS && end > LOW_OBP_ADDRESS) {
2847 if (start < LOW_OBP_ADDRESS) {
2848 flush_tsb_kernel_range(start, LOW_OBP_ADDRESS);
2849 do_flush_tlb_kernel_range(start, LOW_OBP_ADDRESS);
2850 }
2851 if (end > HI_OBP_ADDRESS) {
David S. Miller473ad7f2014-10-04 21:05:14 -07002852 flush_tsb_kernel_range(HI_OBP_ADDRESS, end);
2853 do_flush_tlb_kernel_range(HI_OBP_ADDRESS, end);
David S. Miller4ca9a232014-08-04 20:07:37 -07002854 }
2855 } else {
2856 flush_tsb_kernel_range(start, end);
2857 do_flush_tlb_kernel_range(start, end);
2858 }
2859}