blob: 38e2b272c220cbfaee5fdd4032c4461ab45c5e2e [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>
20#include <linux/bootmem.h>
21#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 Ungererd6fccc72013-01-07 16:13:04 +100043#if !defined(CONFIG_SUN3) && !defined(CONFIG_COLDFIRE)
44extern void init_pointer_table(unsigned long ptable);
45extern pmd_t *zero_pgtable;
46#endif
47
Greg Ungerer66d857b2011-03-22 13:39:27 +100048#ifdef CONFIG_MMU
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100049
50pg_data_t pg_data_map[MAX_NUMNODES];
51EXPORT_SYMBOL(pg_data_map);
52
53int m68k_virt_to_node_shift;
54
55#ifndef CONFIG_SINGLE_MEMORY_CHUNK
56pg_data_t *pg_data_table[65];
57EXPORT_SYMBOL(pg_data_table);
58#endif
59
60void __init m68k_setup_node(int node)
61{
62#ifndef CONFIG_SINGLE_MEMORY_CHUNK
Geert Uytterhoeven79930082013-10-02 21:50:56 +020063 struct m68k_mem_info *info = m68k_memory + node;
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100064 int i, end;
65
66 i = (unsigned long)phys_to_virt(info->addr) >> __virt_to_node_shift();
67 end = (unsigned long)phys_to_virt(info->addr + info->size - 1) >> __virt_to_node_shift();
68 for (; i <= end; i++) {
69 if (pg_data_table[i])
Geert Uytterhoevene6991132016-12-06 19:47:39 +010070 pr_warn("overlap at %u for chunk %u\n", i, node);
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100071 pg_data_table[i] = pg_data_map + node;
72 }
73#endif
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100074 node_set_online(node);
75}
76
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100077#else /* CONFIG_MMU */
78
79/*
80 * paging_init() continues the virtual memory environment setup which
81 * was begun by the code in arch/head.S.
82 * The parameters are pointers to where to stick the starting and ending
83 * addresses of available kernel virtual memory.
84 */
85void __init paging_init(void)
86{
87 /*
88 * Make sure start_mem is page aligned, otherwise bootmem and
89 * page_alloc get different views of the world.
90 */
91 unsigned long end_mem = memory_end & PAGE_MASK;
92 unsigned long zones_size[MAX_NR_ZONES] = { 0, };
93
94 high_memory = (void *) end_mem;
95
96 empty_zero_page = alloc_bootmem_pages(PAGE_SIZE);
Greg Ungererdd1cb3a2012-10-24 22:36:27 +100097
98 /*
99 * Set up SFC/DFC registers (user data space).
100 */
101 set_fs (USER_DS);
102
103 zones_size[ZONE_DMA] = (end_mem - PAGE_OFFSET) >> PAGE_SHIFT;
104 free_area_init(zones_size);
105}
106
Greg Ungererf50bf882012-10-23 13:40:36 +1000107#endif /* CONFIG_MMU */
108
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000109void free_initmem(void)
110{
Greg Ungererf50bf882012-10-23 13:40:36 +1000111#ifndef CONFIG_MMU_SUN3
Jiang Liudbe67df2013-07-03 15:02:51 -0700112 free_initmem_default(-1);
Greg Ungererf50bf882012-10-23 13:40:36 +1000113#endif /* CONFIG_MMU_SUN3 */
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000114}
115
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000116#if defined(CONFIG_MMU) && !defined(CONFIG_COLDFIRE)
117#define VECTORS &vectors[0]
Greg Ungerer66d857b2011-03-22 13:39:27 +1000118#else
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000119#define VECTORS _ramvec
120#endif
121
Jiang Liu3e548a92013-07-03 15:04:37 -0700122static inline void init_pointer_tables(void)
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000123{
Jiang Liu3e548a92013-07-03 15:04:37 -0700124#if defined(CONFIG_MMU) && !defined(CONFIG_SUN3) && !defined(CONFIG_COLDFIRE)
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000125 int i;
126
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000127 /* insert pointer tables allocated so far into the tablelist */
128 init_pointer_table((unsigned long)kernel_pg_dir);
129 for (i = 0; i < PTRS_PER_PGD; i++) {
130 if (pgd_present(kernel_pg_dir[i]))
131 init_pointer_table(__pgd_page(kernel_pg_dir[i]));
132 }
133
134 /* insert also pointer table that we used to unmap the zero page */
135 if (zero_pgtable)
136 init_pointer_table((unsigned long)zero_pgtable);
137#endif
Jiang Liu3e548a92013-07-03 15:04:37 -0700138}
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000139
Jiang Liu3e548a92013-07-03 15:04:37 -0700140void __init mem_init(void)
141{
142 /* this will put all memory onto the freelists */
143 free_all_bootmem();
144 init_pointer_tables();
Jiang Liu96714682013-07-03 15:04:00 -0700145 mem_init_print_info(NULL);
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000146}
147
148#ifdef CONFIG_BLK_DEV_INITRD
149void free_initrd_mem(unsigned long start, unsigned long end)
150{
Jiang Liudbe67df2013-07-03 15:02:51 -0700151 free_reserved_area((void *)start, (void *)end, -1, "initrd");
Greg Ungererdd1cb3a2012-10-24 22:36:27 +1000152}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#endif