xref: /linux/arch/powerpc/mm/mem.c (revision 53ed0af4964229595b60594b35334d006d411ef0)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  *  PowerPC version
4  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
5  *
6  *  Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
7  *  and Cort Dougan (PReP) (cort@cs.nmt.edu)
8  *    Copyright (C) 1996 Paul Mackerras
9  *  PPC44x/36-bit changes by Matt Porter (mporter@mvista.com)
10  *
11  *  Derived from "arch/i386/mm/init.c"
12  *    Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
13  */
14 
15 #include <linux/memblock.h>
16 #include <linux/highmem.h>
17 #include <linux/suspend.h>
18 #include <linux/dma-direct.h>
19 #include <linux/vmalloc.h>
20 
21 #include <asm/swiotlb.h>
22 #include <asm/machdep.h>
23 #include <asm/rtas.h>
24 #include <asm/kasan.h>
25 #include <asm/svm.h>
26 #include <asm/mmzone.h>
27 #include <asm/ftrace.h>
28 #include <asm/code-patching.h>
29 #include <asm/setup.h>
30 #include <asm/fixmap.h>
31 
32 #include <mm/mmu_decl.h>
33 
34 unsigned long long memory_limit;
35 
36 unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)] __page_aligned_bss;
37 EXPORT_SYMBOL(empty_zero_page);
38 
39 pgprot_t __phys_mem_access_prot(unsigned long pfn, unsigned long size,
40 				pgprot_t vma_prot)
41 {
42 	if (ppc_md.phys_mem_access_prot)
43 		return ppc_md.phys_mem_access_prot(pfn, size, vma_prot);
44 
45 	if (!page_is_ram(pfn))
46 		vma_prot = pgprot_noncached(vma_prot);
47 
48 	return vma_prot;
49 }
50 EXPORT_SYMBOL(__phys_mem_access_prot);
51 
52 #ifdef CONFIG_MEMORY_HOTPLUG
53 static DEFINE_MUTEX(linear_mapping_mutex);
54 
55 #ifdef CONFIG_NUMA
56 int memory_add_physaddr_to_nid(u64 start)
57 {
58 	return hot_add_scn_to_nid(start);
59 }
60 EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
61 #endif
62 
63 int __weak create_section_mapping(unsigned long start, unsigned long end,
64 				  int nid, pgprot_t prot)
65 {
66 	return -ENODEV;
67 }
68 
69 int __weak remove_section_mapping(unsigned long start, unsigned long end)
70 {
71 	return -ENODEV;
72 }
73 
74 int __ref arch_create_linear_mapping(int nid, u64 start, u64 size,
75 				     struct mhp_params *params)
76 {
77 	int rc;
78 
79 	start = (unsigned long)__va(start);
80 	mutex_lock(&linear_mapping_mutex);
81 	rc = create_section_mapping(start, start + size, nid,
82 				    params->pgprot);
83 	mutex_unlock(&linear_mapping_mutex);
84 	if (rc) {
85 		pr_warn("Unable to create linear mapping for 0x%llx..0x%llx: %d\n",
86 			start, start + size, rc);
87 		return -EFAULT;
88 	}
89 	return 0;
90 }
91 
92 void __ref arch_remove_linear_mapping(u64 start, u64 size)
93 {
94 	int ret;
95 
96 	/* Remove htab bolted mappings for this section of memory */
97 	start = (unsigned long)__va(start);
98 
99 	mutex_lock(&linear_mapping_mutex);
100 	ret = remove_section_mapping(start, start + size);
101 	mutex_unlock(&linear_mapping_mutex);
102 	if (ret)
103 		pr_warn("Unable to remove linear mapping for 0x%llx..0x%llx: %d\n",
104 			start, start + size, ret);
105 
106 	/* Ensure all vmalloc mappings are flushed in case they also
107 	 * hit that section of memory
108 	 */
109 	vm_unmap_aliases();
110 }
111 
112 /*
113  * After memory hotplug the variables max_pfn, max_low_pfn and high_memory need
114  * updating.
115  */
116 static void update_end_of_memory_vars(u64 start, u64 size)
117 {
118 	unsigned long end_pfn = PFN_UP(start + size);
119 
120 	if (end_pfn > max_pfn) {
121 		max_pfn = end_pfn;
122 		max_low_pfn = end_pfn;
123 		high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1;
124 	}
125 }
126 
127 int __ref add_pages(int nid, unsigned long start_pfn, unsigned long nr_pages,
128 		    struct mhp_params *params)
129 {
130 	int ret;
131 
132 	ret = __add_pages(nid, start_pfn, nr_pages, params);
133 	if (ret)
134 		return ret;
135 
136 	/* update max_pfn, max_low_pfn and high_memory */
137 	update_end_of_memory_vars(start_pfn << PAGE_SHIFT,
138 				  nr_pages << PAGE_SHIFT);
139 
140 	return ret;
141 }
142 
143 int __ref arch_add_memory(int nid, u64 start, u64 size,
144 			  struct mhp_params *params)
145 {
146 	unsigned long start_pfn = start >> PAGE_SHIFT;
147 	unsigned long nr_pages = size >> PAGE_SHIFT;
148 	int rc;
149 
150 	rc = arch_create_linear_mapping(nid, start, size, params);
151 	if (rc)
152 		return rc;
153 	rc = add_pages(nid, start_pfn, nr_pages, params);
154 	if (rc)
155 		arch_remove_linear_mapping(start, size);
156 	return rc;
157 }
158 
159 void __ref arch_remove_memory(u64 start, u64 size, struct vmem_altmap *altmap)
160 {
161 	unsigned long start_pfn = start >> PAGE_SHIFT;
162 	unsigned long nr_pages = size >> PAGE_SHIFT;
163 
164 	__remove_pages(start_pfn, nr_pages, altmap);
165 	arch_remove_linear_mapping(start, size);
166 }
167 #endif
168 
169 #ifndef CONFIG_NUMA
170 void __init mem_topology_setup(void)
171 {
172 	max_low_pfn = max_pfn = memblock_end_of_DRAM() >> PAGE_SHIFT;
173 	min_low_pfn = MEMORY_START >> PAGE_SHIFT;
174 #ifdef CONFIG_HIGHMEM
175 	max_low_pfn = lowmem_end_addr >> PAGE_SHIFT;
176 #endif
177 
178 	/* Place all memblock_regions in the same node and merge contiguous
179 	 * memblock_regions
180 	 */
181 	memblock_set_node(0, PHYS_ADDR_MAX, &memblock.memory, 0);
182 }
183 
184 void __init initmem_init(void)
185 {
186 	sparse_init();
187 }
188 
189 /* mark pages that don't exist as nosave */
190 static int __init mark_nonram_nosave(void)
191 {
192 	unsigned long spfn, epfn, prev = 0;
193 	int i;
194 
195 	for_each_mem_pfn_range(i, MAX_NUMNODES, &spfn, &epfn, NULL) {
196 		if (prev && prev < spfn)
197 			register_nosave_region(prev, spfn);
198 
199 		prev = epfn;
200 	}
201 
202 	return 0;
203 }
204 #else /* CONFIG_NUMA */
205 static int __init mark_nonram_nosave(void)
206 {
207 	return 0;
208 }
209 #endif
210 
211 /*
212  * Zones usage:
213  *
214  * We setup ZONE_DMA to be 31-bits on all platforms and ZONE_NORMAL to be
215  * everything else. GFP_DMA32 page allocations automatically fall back to
216  * ZONE_DMA.
217  *
218  * By using 31-bit unconditionally, we can exploit zone_dma_bits to inform the
219  * generic DMA mapping code.  32-bit only devices (if not handled by an IOMMU
220  * anyway) will take a first dip into ZONE_NORMAL and get otherwise served by
221  * ZONE_DMA.
222  */
223 static unsigned long max_zone_pfns[MAX_NR_ZONES];
224 
225 /*
226  * paging_init() sets up the page tables - in fact we've already done this.
227  */
228 void __init paging_init(void)
229 {
230 	unsigned long long total_ram = memblock_phys_mem_size();
231 	phys_addr_t top_of_ram = memblock_end_of_DRAM();
232 
233 #ifdef CONFIG_HIGHMEM
234 	unsigned long v = __fix_to_virt(FIX_KMAP_END);
235 	unsigned long end = __fix_to_virt(FIX_KMAP_BEGIN);
236 
237 	for (; v < end; v += PAGE_SIZE)
238 		map_kernel_page(v, 0, __pgprot(0)); /* XXX gross */
239 
240 	map_kernel_page(PKMAP_BASE, 0, __pgprot(0));	/* XXX gross */
241 	pkmap_page_table = virt_to_kpte(PKMAP_BASE);
242 #endif /* CONFIG_HIGHMEM */
243 
244 	printk(KERN_DEBUG "Top of RAM: 0x%llx, Total RAM: 0x%llx\n",
245 	       (unsigned long long)top_of_ram, total_ram);
246 	printk(KERN_DEBUG "Memory hole size: %ldMB\n",
247 	       (long int)((top_of_ram - total_ram) >> 20));
248 
249 	/*
250 	 * Allow 30-bit DMA for very limited Broadcom wifi chips on many
251 	 * powerbooks.
252 	 */
253 	if (IS_ENABLED(CONFIG_PPC32))
254 		zone_dma_bits = 30;
255 	else
256 		zone_dma_bits = 31;
257 
258 #ifdef CONFIG_ZONE_DMA
259 	max_zone_pfns[ZONE_DMA]	= min(max_low_pfn,
260 				      1UL << (zone_dma_bits - PAGE_SHIFT));
261 #endif
262 	max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
263 #ifdef CONFIG_HIGHMEM
264 	max_zone_pfns[ZONE_HIGHMEM] = max_pfn;
265 #endif
266 
267 	free_area_init(max_zone_pfns);
268 
269 	mark_nonram_nosave();
270 }
271 
272 void __init mem_init(void)
273 {
274 	/*
275 	 * book3s is limited to 16 page sizes due to encoding this in
276 	 * a 4-bit field for slices.
277 	 */
278 	BUILD_BUG_ON(MMU_PAGE_COUNT > 16);
279 
280 #ifdef CONFIG_SWIOTLB
281 	/*
282 	 * Some platforms (e.g. 85xx) limit DMA-able memory way below
283 	 * 4G. We force memblock to bottom-up mode to ensure that the
284 	 * memory allocated in swiotlb_init() is DMA-able.
285 	 * As it's the last memblock allocation, no need to reset it
286 	 * back to to-down.
287 	 */
288 	memblock_set_bottom_up(true);
289 	swiotlb_init(ppc_swiotlb_enable, ppc_swiotlb_flags);
290 #endif
291 
292 	high_memory = (void *) __va(max_low_pfn * PAGE_SIZE);
293 
294 	kasan_late_init();
295 
296 	memblock_free_all();
297 
298 #ifdef CONFIG_HIGHMEM
299 	{
300 		unsigned long pfn, highmem_mapnr;
301 
302 		highmem_mapnr = lowmem_end_addr >> PAGE_SHIFT;
303 		for (pfn = highmem_mapnr; pfn < max_mapnr; ++pfn) {
304 			phys_addr_t paddr = (phys_addr_t)pfn << PAGE_SHIFT;
305 			struct page *page = pfn_to_page(pfn);
306 			if (memblock_is_memory(paddr) && !memblock_is_reserved(paddr))
307 				free_highmem_page(page);
308 		}
309 	}
310 #endif /* CONFIG_HIGHMEM */
311 
312 #if defined(CONFIG_PPC_E500) && !defined(CONFIG_SMP)
313 	/*
314 	 * If smp is enabled, next_tlbcam_idx is initialized in the cpu up
315 	 * functions.... do it here for the non-smp case.
316 	 */
317 	per_cpu(next_tlbcam_idx, smp_processor_id()) =
318 		(mfspr(SPRN_TLB1CFG) & TLBnCFG_N_ENTRY) - 1;
319 #endif
320 
321 #ifdef CONFIG_PPC32
322 	pr_info("Kernel virtual memory layout:\n");
323 #ifdef CONFIG_KASAN
324 	pr_info("  * 0x%08lx..0x%08lx  : kasan shadow mem\n",
325 		KASAN_SHADOW_START, KASAN_SHADOW_END);
326 #endif
327 	pr_info("  * 0x%08lx..0x%08lx  : fixmap\n", FIXADDR_START, FIXADDR_TOP);
328 #ifdef CONFIG_HIGHMEM
329 	pr_info("  * 0x%08lx..0x%08lx  : highmem PTEs\n",
330 		PKMAP_BASE, PKMAP_ADDR(LAST_PKMAP));
331 #endif /* CONFIG_HIGHMEM */
332 	if (ioremap_bot != IOREMAP_TOP)
333 		pr_info("  * 0x%08lx..0x%08lx  : early ioremap\n",
334 			ioremap_bot, IOREMAP_TOP);
335 	pr_info("  * 0x%08lx..0x%08lx  : vmalloc & ioremap\n",
336 		VMALLOC_START, VMALLOC_END);
337 #ifdef MODULES_VADDR
338 	pr_info("  * 0x%08lx..0x%08lx  : modules\n",
339 		MODULES_VADDR, MODULES_END);
340 #endif
341 #endif /* CONFIG_PPC32 */
342 }
343 
344 void free_initmem(void)
345 {
346 	ppc_md.progress = ppc_printk_progress;
347 	mark_initmem_nx();
348 	free_initmem_default(POISON_FREE_INITMEM);
349 	ftrace_free_init_tramp();
350 }
351 
352 /*
353  * System memory should not be in /proc/iomem but various tools expect it
354  * (eg kdump).
355  */
356 static int __init add_system_ram_resources(void)
357 {
358 	phys_addr_t start, end;
359 	u64 i;
360 
361 	for_each_mem_range(i, &start, &end) {
362 		struct resource *res;
363 
364 		res = kzalloc(sizeof(struct resource), GFP_KERNEL);
365 		WARN_ON(!res);
366 
367 		if (res) {
368 			res->name = "System RAM";
369 			res->start = start;
370 			/*
371 			 * In memblock, end points to the first byte after
372 			 * the range while in resourses, end points to the
373 			 * last byte in the range.
374 			 */
375 			res->end = end - 1;
376 			res->flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
377 			WARN_ON(request_resource(&iomem_resource, res) < 0);
378 		}
379 	}
380 
381 	return 0;
382 }
383 subsys_initcall(add_system_ram_resources);
384 
385 #ifdef CONFIG_STRICT_DEVMEM
386 /*
387  * devmem_is_allowed(): check to see if /dev/mem access to a certain address
388  * is valid. The argument is a physical page number.
389  *
390  * Access has to be given to non-kernel-ram areas as well, these contain the
391  * PCI mmio resources as well as potential bios/acpi data regions.
392  */
393 int devmem_is_allowed(unsigned long pfn)
394 {
395 	if (page_is_rtas_user_buf(pfn))
396 		return 1;
397 	if (iomem_is_exclusive(PFN_PHYS(pfn)))
398 		return 0;
399 	if (!page_is_ram(pfn))
400 		return 1;
401 	return 0;
402 }
403 #endif /* CONFIG_STRICT_DEVMEM */
404 
405 /*
406  * This is defined in kernel/resource.c but only powerpc needs to export it, for
407  * the EHEA driver. Drop this when drivers/net/ethernet/ibm/ehea is removed.
408  */
409 EXPORT_SYMBOL_GPL(walk_system_ram_range);
410