1 // SPDX-License-Identifier: GPL-2.0
3 * linux/arch/m68k/mm/init.c
5 * Copyright (C) 1995 Hamish Macdonald
7 * Contains common initialization routines, specific init code moved
8 * to motorola.c and sun3mmu.c
11 #include <linux/module.h>
12 #include <linux/signal.h>
13 #include <linux/sched.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>
23 #include <asm/setup.h>
24 #include <linux/uaccess.h>
26 #include <asm/pgalloc.h>
27 #include <asm/traps.h>
28 #include <asm/machdep.h>
31 #include <asm/atari_stram.h>
33 #include <asm/sections.h>
37 * ZERO_PAGE is a special page that is used for zero-initialized
40 void *empty_zero_page
;
41 EXPORT_SYMBOL(empty_zero_page
);
43 #if !defined(CONFIG_SUN3) && !defined(CONFIG_COLDFIRE)
44 extern void init_pointer_table(unsigned long ptable
);
45 extern pmd_t
*zero_pgtable
;
50 pg_data_t pg_data_map
[MAX_NUMNODES
];
51 EXPORT_SYMBOL(pg_data_map
);
53 int m68k_virt_to_node_shift
;
55 #ifndef CONFIG_SINGLE_MEMORY_CHUNK
56 pg_data_t
*pg_data_table
[65];
57 EXPORT_SYMBOL(pg_data_table
);
60 void __init
m68k_setup_node(int node
)
62 #ifndef CONFIG_SINGLE_MEMORY_CHUNK
63 struct m68k_mem_info
*info
= m68k_memory
+ node
;
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
++) {
70 pr_warn("overlap at %u for chunk %u\n", i
, node
);
71 pg_data_table
[i
] = pg_data_map
+ node
;
74 node_set_online(node
);
77 #else /* CONFIG_MMU */
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.
85 void __init
paging_init(void)
88 * Make sure start_mem is page aligned, otherwise bootmem and
89 * page_alloc get different views of the world.
91 unsigned long end_mem
= memory_end
& PAGE_MASK
;
92 unsigned long zones_size
[MAX_NR_ZONES
] = { 0, };
94 high_memory
= (void *) end_mem
;
96 empty_zero_page
= alloc_bootmem_pages(PAGE_SIZE
);
99 * Set up SFC/DFC registers (user data space).
103 zones_size
[ZONE_DMA
] = (end_mem
- PAGE_OFFSET
) >> PAGE_SHIFT
;
104 free_area_init(zones_size
);
107 #endif /* CONFIG_MMU */
109 void free_initmem(void)
111 #ifndef CONFIG_MMU_SUN3
112 free_initmem_default(-1);
113 #endif /* CONFIG_MMU_SUN3 */
116 #if defined(CONFIG_MMU) && !defined(CONFIG_COLDFIRE)
117 #define VECTORS &vectors[0]
119 #define VECTORS _ramvec
122 static inline void init_pointer_tables(void)
124 #if defined(CONFIG_MMU) && !defined(CONFIG_SUN3) && !defined(CONFIG_COLDFIRE)
127 /* 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
]));
134 /* insert also pointer table that we used to unmap the zero page */
136 init_pointer_table((unsigned long)zero_pgtable
);
140 void __init
mem_init(void)
142 /* this will put all memory onto the freelists */
144 init_pointer_tables();
145 mem_init_print_info(NULL
);
148 #ifdef CONFIG_BLK_DEV_INITRD
149 void free_initrd_mem(unsigned long start
, unsigned long end
)
151 free_reserved_area((void *)start
, (void *)end
, -1, "initrd");