Merge tag 'random-6.11-rc6-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / arch / sh / mm / init.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
01066625
PM
2/*
3 * linux/arch/sh/mm/init.c
1da177e4
LT
4 *
5 * Copyright (C) 1999 Niibe Yutaka
2f599861 6 * Copyright (C) 2002 - 2011 Paul Mundt
1da177e4
LT
7 *
8 * Based on linux/arch/i386/mm/init.c:
9 * Copyright (C) 1995 Linus Torvalds
10 */
1da177e4
LT
11#include <linux/mm.h>
12#include <linux/swap.h>
1da177e4 13#include <linux/init.h>
5a0e3ad6 14#include <linux/gfp.h>
57c8a661 15#include <linux/memblock.h>
2cb7ce3b 16#include <linux/proc_fs.h>
27641dee 17#include <linux/pagemap.h>
01066625
PM
18#include <linux/percpu.h>
19#include <linux/io.h>
94c28510 20#include <linux/dma-mapping.h>
f7be3455 21#include <linux/export.h>
1da177e4 22#include <asm/mmu_context.h>
4bc277ac 23#include <asm/mmzone.h>
c77b29db 24#include <asm/kexec.h>
1da177e4
LT
25#include <asm/tlb.h>
26#include <asm/cacheflush.h>
07cbb41b 27#include <asm/sections.h>
4bc277ac 28#include <asm/setup.h>
1da177e4 29#include <asm/cache.h>
ca15ca40 30#include <asm/pgalloc.h>
87dfb311 31#include <linux/sizes.h>
3eef6b74 32#include "ioremap.h"
1da177e4 33
1da177e4 34pgd_t swapper_pg_dir[PTRS_PER_PGD];
c6feb614 35
19d8f84f
PM
36void __init generic_mem_init(void)
37{
95f72d1e 38 memblock_add(__MEMORY_START, __MEMORY_SIZE);
19d8f84f
PM
39}
40
4bc277ac
PM
41void __init __weak plat_mem_setup(void)
42{
43 /* Nothing to see here, move along. */
44}
45
11cbb70e 46#ifdef CONFIG_MMU
07cad4dc 47static pte_t *__get_pte_phys(unsigned long addr)
1da177e4
LT
48{
49 pgd_t *pgd;
874e2cc1 50 p4d_t *p4d;
26ff6c11 51 pud_t *pud;
1da177e4 52 pmd_t *pmd;
1da177e4 53
99a596f9 54 pgd = pgd_offset_k(addr);
1da177e4
LT
55 if (pgd_none(*pgd)) {
56 pgd_ERROR(*pgd);
07cad4dc 57 return NULL;
1da177e4
LT
58 }
59
874e2cc1
MR
60 p4d = p4d_alloc(NULL, pgd, addr);
61 if (unlikely(!p4d)) {
62 p4d_ERROR(*p4d);
63 return NULL;
64 }
65
66 pud = pud_alloc(NULL, p4d, addr);
99a596f9
SM
67 if (unlikely(!pud)) {
68 pud_ERROR(*pud);
07cad4dc 69 return NULL;
26ff6c11
PM
70 }
71
99a596f9
SM
72 pmd = pmd_alloc(NULL, pud, addr);
73 if (unlikely(!pmd)) {
74 pmd_ERROR(*pmd);
07cad4dc 75 return NULL;
1da177e4
LT
76 }
77
598ee698 78 return pte_offset_kernel(pmd, addr);
07cad4dc
MF
79}
80
81static void set_pte_phys(unsigned long addr, unsigned long phys, pgprot_t prot)
82{
83 pte_t *pte;
84
85 pte = __get_pte_phys(addr);
1da177e4
LT
86 if (!pte_none(*pte)) {
87 pte_ERROR(*pte);
88 return;
89 }
90
91 set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, prot));
997d0030 92 local_flush_tlb_one(get_asid(), addr);
07cad4dc
MF
93
94 if (pgprot_val(prot) & _PAGE_WIRED)
95 tlb_wire_entry(NULL, addr, *pte);
96}
97
98static void clear_pte_phys(unsigned long addr, pgprot_t prot)
99{
100 pte_t *pte;
101
102 pte = __get_pte_phys(addr);
103
104 if (pgprot_val(prot) & _PAGE_WIRED)
105 tlb_unwire_entry();
106
107 set_pte(pte, pfn_pte(0, __pgprot(0)));
108 local_flush_tlb_one(get_asid(), addr);
1da177e4
LT
109}
110
1da177e4
LT
111void __set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
112{
113 unsigned long address = __fix_to_virt(idx);
114
115 if (idx >= __end_of_fixed_addresses) {
116 BUG();
117 return;
118 }
119
120 set_pte_phys(address, phys, prot);
121}
2adb4e10 122
07cad4dc
MF
123void __clear_fixmap(enum fixed_addresses idx, pgprot_t prot)
124{
125 unsigned long address = __fix_to_virt(idx);
126
127 if (idx >= __end_of_fixed_addresses) {
128 BUG();
129 return;
130 }
131
132 clear_pte_phys(address, prot);
133}
134
598ee698
PM
135static pmd_t * __init one_md_table_init(pud_t *pud)
136{
137 if (pud_none(*pud)) {
138 pmd_t *pmd;
139
15c3c114 140 pmd = memblock_alloc(PAGE_SIZE, PAGE_SIZE);
8a7f97b9
MR
141 if (!pmd)
142 panic("%s: Failed to allocate %lu bytes align=0x%lx\n",
143 __func__, PAGE_SIZE, PAGE_SIZE);
598ee698
PM
144 pud_populate(&init_mm, pud, pmd);
145 BUG_ON(pmd != pmd_offset(pud, 0));
146 }
147
148 return pmd_offset(pud, 0);
149}
150
151static pte_t * __init one_page_table_init(pmd_t *pmd)
152{
153 if (pmd_none(*pmd)) {
154 pte_t *pte;
155
15c3c114 156 pte = memblock_alloc(PAGE_SIZE, PAGE_SIZE);
8a7f97b9
MR
157 if (!pte)
158 panic("%s: Failed to allocate %lu bytes align=0x%lx\n",
159 __func__, PAGE_SIZE, PAGE_SIZE);
598ee698
PM
160 pmd_populate_kernel(&init_mm, pmd, pte);
161 BUG_ON(pte != pte_offset_kernel(pmd, 0));
162 }
163
164 return pte_offset_kernel(pmd, 0);
165}
166
167static pte_t * __init page_table_kmap_check(pte_t *pte, pmd_t *pmd,
168 unsigned long vaddr, pte_t *lastpte)
169{
170 return pte;
171}
172
2adb4e10
SM
173void __init page_table_range_init(unsigned long start, unsigned long end,
174 pgd_t *pgd_base)
175{
176 pgd_t *pgd;
177 pud_t *pud;
178 pmd_t *pmd;
598ee698 179 pte_t *pte = NULL;
0906a3ad 180 int i, j, k;
2adb4e10
SM
181 unsigned long vaddr;
182
0906a3ad 183 vaddr = start;
a194a626
MR
184 i = pgd_index(vaddr);
185 j = pud_index(vaddr);
186 k = pmd_index(vaddr);
0906a3ad
PM
187 pgd = pgd_base + i;
188
189 for ( ; (i < PTRS_PER_PGD) && (vaddr != end); pgd++, i++) {
190 pud = (pud_t *)pgd;
191 for ( ; (j < PTRS_PER_PUD) && (vaddr != end); pud++, j++) {
598ee698
PM
192 pmd = one_md_table_init(pud);
193#ifndef __PAGETABLE_PMD_FOLDED
5d9b4b19
MF
194 pmd += k;
195#endif
0906a3ad 196 for (; (k < PTRS_PER_PMD) && (vaddr != end); pmd++, k++) {
598ee698
PM
197 pte = page_table_kmap_check(one_page_table_init(pmd),
198 pmd, vaddr, pte);
0906a3ad
PM
199 vaddr += PMD_SIZE;
200 }
201 k = 0;
2adb4e10 202 }
0906a3ad 203 j = 0;
2adb4e10
SM
204 }
205}
11cbb70e 206#endif /* CONFIG_MMU */
1da177e4 207
4bc277ac
PM
208void __init allocate_pgdat(unsigned int nid)
209{
210 unsigned long start_pfn, end_pfn;
4bc277ac
PM
211
212 get_pfn_range_for_nid(nid, &start_pfn, &end_pfn);
213
a9ee6cf5 214#ifdef CONFIG_NUMA
26fb3dae 215 NODE_DATA(nid) = memblock_alloc_try_nid(
47f1e926
MR
216 sizeof(struct pglist_data),
217 SMP_CACHE_BYTES, MEMBLOCK_LOW_LIMIT,
218 MEMBLOCK_ALLOC_ACCESSIBLE, nid);
219 if (!NODE_DATA(nid))
4bc277ac 220 panic("Can't allocate pgdat for node %d\n", nid);
4bc277ac
PM
221#endif
222
223 NODE_DATA(nid)->node_start_pfn = start_pfn;
224 NODE_DATA(nid)->node_spanned_pages = end_pfn - start_pfn;
225}
226
4bc277ac
PM
227static void __init do_init_bootmem(void)
228{
c9118e6c
MR
229 unsigned long start_pfn, end_pfn;
230 int i;
4bc277ac
PM
231
232 /* Add active regions with valid PFNs. */
c9118e6c 233 for_each_mem_pfn_range(i, MAX_NUMNODES, &start_pfn, &end_pfn, NULL)
4bc277ac 234 __add_active_range(0, start_pfn, end_pfn);
4bc277ac
PM
235
236 /* All of system RAM sits in node 0 for the non-NUMA case */
237 allocate_pgdat(0);
238 node_set_online(0);
239
240 plat_mem_setup();
241
4bc277ac
PM
242 sparse_init();
243}
244
245static void __init early_reserve_mem(void)
246{
247 unsigned long start_pfn;
e66ac3f2
SH
248 u32 zero_base = (u32)__MEMORY_START + (u32)PHYSICAL_OFFSET;
249 u32 start = zero_base + (u32)CONFIG_ZERO_PAGE_OFFSET;
4bc277ac
PM
250
251 /*
252 * Partially used pages are not usable - thus
253 * we are rounding upwards:
254 */
255 start_pfn = PFN_UP(__pa(_end));
256
257 /*
258 * Reserve the kernel text and Reserve the bootmem bitmap. We do
259 * this in two steps (first step was init_bootmem()), because
260 * this catches the (definitely buggy) case of us accidentally
261 * initializing the bootmem allocator with an invalid RAM area.
262 */
e66ac3f2 263 memblock_reserve(start, (PFN_PHYS(start_pfn) + PAGE_SIZE - 1) - start);
4bc277ac
PM
264
265 /*
266 * Reserve physical pages below CONFIG_ZERO_PAGE_OFFSET.
267 */
268 if (CONFIG_ZERO_PAGE_OFFSET != 0)
e66ac3f2 269 memblock_reserve(zero_base, CONFIG_ZERO_PAGE_OFFSET);
4bc277ac
PM
270
271 /*
272 * Handle additional early reservations
273 */
274 check_for_initrd();
275 reserve_crashkernel();
276}
277
1da177e4
LT
278void __init paging_init(void)
279{
2de212eb 280 unsigned long max_zone_pfns[MAX_NR_ZONES];
0906a3ad 281 unsigned long vaddr, end;
1da177e4 282
4bc277ac
PM
283 sh_mv.mv_mem_init();
284
285 early_reserve_mem();
286
2f599861
PM
287 /*
288 * Once the early reservations are out of the way, give the
289 * platforms a chance to kick out some memory.
290 */
291 if (sh_mv.mv_mem_reserve)
292 sh_mv.mv_mem_reserve();
293
95f72d1e 294 memblock_enforce_memory_limit(memory_limit);
1aadc056 295 memblock_allow_resize();
4bc277ac 296
95f72d1e 297 memblock_dump_all();
4bc277ac
PM
298
299 /*
300 * Determine low and high memory ranges:
301 */
95f72d1e 302 max_low_pfn = max_pfn = memblock_end_of_DRAM() >> PAGE_SHIFT;
4bc277ac 303 min_low_pfn = __MEMORY_START >> PAGE_SHIFT;
b4fb12e6 304 set_max_mapnr(max_low_pfn - min_low_pfn);
4bc277ac
PM
305
306 nodes_clear(node_online_map);
307
308 memory_start = (unsigned long)__va(__MEMORY_START);
95f72d1e 309 memory_end = memory_start + (memory_limit ?: memblock_phys_mem_size());
4bc277ac
PM
310
311 uncached_init();
312 pmb_init();
313 do_init_bootmem();
314 ioremap_fixed_init();
315
01066625
PM
316 /* We don't need to map the kernel through the TLB, as
317 * it is permanatly mapped using P1. So clear the
318 * entire pgd. */
319 memset(swapper_pg_dir, 0, sizeof(swapper_pg_dir));
1da177e4 320
6e4662ff
SM
321 /* Set an initial value for the MMU.TTB so we don't have to
322 * check for a null value. */
323 set_TTB(swapper_pg_dir);
324
acca4f4d
PM
325 /*
326 * Populate the relevant portions of swapper_pg_dir so that
2adb4e10 327 * we can use the fixmap entries without calling kmalloc.
acca4f4d
PM
328 * pte's will be filled in by __set_fixmap().
329 */
330 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
0906a3ad
PM
331 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
332 page_table_range_init(vaddr, end, swapper_pg_dir);
acca4f4d
PM
333
334 kmap_coherent_init();
2adb4e10 335
2de212eb 336 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
ac21fc2d 337 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
9691a071 338 free_area_init(max_zone_pfns);
1da177e4
LT
339}
340
d9b9487a
PM
341unsigned int mem_init_done = 0;
342
1da177e4
LT
343void __init mem_init(void)
344{
da61efcf 345 pg_data_t *pgdat;
1da177e4 346
2de212eb 347 high_memory = NULL;
e3a466b2
JL
348 for_each_online_pgdat(pgdat)
349 high_memory = max_t(void *, high_memory,
350 __va(pgdat_end_pfn(pgdat) << PAGE_SHIFT));
2de212eb 351
c6ffc5ca 352 memblock_free_all();
1da177e4 353
37443ef3
PM
354 /* Set this up early, so we can take care of the zero page */
355 cpu_cache_init();
356
1da177e4
LT
357 /* clear the zero-page */
358 memset(empty_zero_page, 0, PAGE_SIZE);
359 __flush_wback_region(empty_zero_page, PAGE_SIZE);
360
35f99c0d
PM
361 vsyscall_init();
362
da61efcf 363 pr_info("virtual kernel memory layout:\n"
35f99c0d 364 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
35f99c0d 365 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
3125ee72 366 " lowmem : 0x%08lx - 0x%08lx (%4ld MB) (cached)\n"
b0f3ae03 367#ifdef CONFIG_UNCACHED_MAPPING
3125ee72 368 " : 0x%08lx - 0x%08lx (%4ld MB) (uncached)\n"
b0f3ae03 369#endif
35f99c0d
PM
370 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
371 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
372 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
373 FIXADDR_START, FIXADDR_TOP,
374 (FIXADDR_TOP - FIXADDR_START) >> 10,
375
35f99c0d
PM
376 (unsigned long)VMALLOC_START, VMALLOC_END,
377 (VMALLOC_END - VMALLOC_START) >> 20,
378
379 (unsigned long)memory_start, (unsigned long)high_memory,
380 ((unsigned long)high_memory - (unsigned long)memory_start) >> 20,
381
b0f3ae03 382#ifdef CONFIG_UNCACHED_MAPPING
9edef286 383 uncached_start, uncached_end, uncached_size >> 20,
b0f3ae03 384#endif
3125ee72 385
35f99c0d
PM
386 (unsigned long)&__init_begin, (unsigned long)&__init_end,
387 ((unsigned long)&__init_end -
388 (unsigned long)&__init_begin) >> 10,
389
390 (unsigned long)&_etext, (unsigned long)&_edata,
391 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
392
393 (unsigned long)&_text, (unsigned long)&_etext,
394 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
d9b9487a
PM
395
396 mem_init_done = 1;
1da177e4 397}