blob: 1b47bec15832066542b6cfa53e3e46489459c147 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Greg Ungererdd1cb3a2012-10-24 22:36:27 +10002/*
3 * linux/arch/m68k/mm/init.c
4 *
5 * Copyright (C) 1995 Hamish Macdonald
6 *
7 * Contains common initialization routines, specific init code moved
8 * to motorola.c and sun3mmu.c
9 */
10
11#include <linux/module.h>
12#include <linux/signal.h>
13#include <linux/sched.h>
14#include <linux/mm.h>
15#include <linux/swap.h>
16#include <linux/kernel.h>
17#include <linux/string.h>
18#include <linux/types.h>
19#include <linux/init.h>
Mike Rapoport57c8a662018-10-30 15:09:49 -070020#include <linux/memblock.h>
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100021#include <linux/gfp.h>
22
23#include <asm/setup.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080024#include <linux/uaccess.h>
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100025#include <asm/page.h>
26#include <asm/pgalloc.h>
27#include <asm/traps.h>
28#include <asm/machdep.h>
29#include <asm/io.h>
30#ifdef CONFIG_ATARI
31#include <asm/atari_stram.h>
32#endif
33#include <asm/sections.h>
34#include <asm/tlb.h>
35
36/*
37 * ZERO_PAGE is a special page that is used for zero-initialized
38 * data and COW.
39 */
40void *empty_zero_page;
41EXPORT_SYMBOL(empty_zero_page);
42
Greg Ungerer66d857b2011-03-22 13:39:27 +100043#ifdef CONFIG_MMU
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100044
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100045int m68k_virt_to_node_shift;
46
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100047void __init m68k_setup_node(int node)
48{
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100049 node_set_online(node);
50}
51
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100052#else /* CONFIG_MMU */
53
54/*
55 * paging_init() continues the virtual memory environment setup which
56 * was begun by the code in arch/head.S.
57 * The parameters are pointers to where to stick the starting and ending
58 * addresses of available kernel virtual memory.
59 */
60void __init paging_init(void)
61{
62 /*
63 * Make sure start_mem is page aligned, otherwise bootmem and
64 * page_alloc get different views of the world.
65 */
66 unsigned long end_mem = memory_end & PAGE_MASK;
Mike Rapoportfa3354e2020-06-03 15:57:06 -070067 unsigned long max_zone_pfn[MAX_NR_ZONES] = { 0, };
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100068
69 high_memory = (void *) end_mem;
70
Mike Rapoport15c3c112018-10-30 15:08:58 -070071 empty_zero_page = memblock_alloc(PAGE_SIZE, PAGE_SIZE);
Mike Rapoport8a7f97b2019-03-11 23:30:31 -070072 if (!empty_zero_page)
73 panic("%s: Failed to allocate %lu bytes align=0x%lx\n",
74 __func__, PAGE_SIZE, PAGE_SIZE);
Mike Rapoportfa3354e2020-06-03 15:57:06 -070075 max_zone_pfn[ZONE_DMA] = end_mem >> PAGE_SHIFT;
76 free_area_init(max_zone_pfn);
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100077}
78
Greg Ungererf50bf882012-10-23 13:40:36 +100079#endif /* CONFIG_MMU */
80
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100081void free_initmem(void)
82{
Greg Ungererf50bf882012-10-23 13:40:36 +100083#ifndef CONFIG_MMU_SUN3
Jiang Liudbe67df2013-07-03 15:02:51 -070084 free_initmem_default(-1);
Greg Ungererf50bf882012-10-23 13:40:36 +100085#endif /* CONFIG_MMU_SUN3 */
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100086}
87
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100088#if defined(CONFIG_MMU) && !defined(CONFIG_COLDFIRE)
89#define VECTORS &vectors[0]
Greg Ungerer66d857b2011-03-22 13:39:27 +100090#else
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100091#define VECTORS _ramvec
92#endif
93
Jiang Liu3e548a92013-07-03 15:04:37 -070094static inline void init_pointer_tables(void)
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100095{
Jiang Liu3e548a92013-07-03 15:04:37 -070096#if defined(CONFIG_MMU) && !defined(CONFIG_SUN3) && !defined(CONFIG_COLDFIRE)
Peter Zijlstra518a6b52020-01-31 13:45:40 +010097 int i, j;
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100098
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100099 /* insert pointer tables allocated so far into the tablelist */
Peter Zijlstra0e071ee2020-01-31 13:45:39 +0100100 init_pointer_table(kernel_pg_dir, TABLE_PGD);
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000101 for (i = 0; i < PTRS_PER_PGD; i++) {
Peter Zijlstra0e071ee2020-01-31 13:45:39 +0100102 pud_t *pud = (pud_t *)&kernel_pg_dir[i];
103 pmd_t *pmd_dir;
Mike Rapoport60e50f32019-12-04 16:53:59 -0800104
Peter Zijlstra0e071ee2020-01-31 13:45:39 +0100105 if (!pud_present(*pud))
106 continue;
107
108 pmd_dir = (pmd_t *)pgd_page_vaddr(kernel_pg_dir[i]);
109 init_pointer_table(pmd_dir, TABLE_PMD);
Peter Zijlstra518a6b52020-01-31 13:45:40 +0100110
111 for (j = 0; j < PTRS_PER_PMD; j++) {
112 pmd_t *pmd = &pmd_dir[j];
113 pte_t *pte_dir;
114
115 if (!pmd_present(*pmd))
116 continue;
117
Mike Rapoport974b9b22020-06-08 21:33:10 -0700118 pte_dir = (pte_t *)pmd_page_vaddr(*pmd);
Peter Zijlstra518a6b52020-01-31 13:45:40 +0100119 init_pointer_table(pte_dir, TABLE_PTE);
120 }
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000121 }
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000122#endif
Jiang Liu3e548a92013-07-03 15:04:37 -0700123}
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000124
Jiang Liu3e548a92013-07-03 15:04:37 -0700125void __init mem_init(void)
126{
127 /* this will put all memory onto the freelists */
Mike Rapoportc6ffc5c2018-10-30 15:09:30 -0700128 memblock_free_all();
Jiang Liu3e548a92013-07-03 15:04:37 -0700129 init_pointer_tables();
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000130}