xref: /openbmc/linux/arch/s390/kernel/setup.c (revision e657c18a)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  *  S390 version
4  *    Copyright IBM Corp. 1999, 2012
5  *    Author(s): Hartmut Penner (hp@de.ibm.com),
6  *               Martin Schwidefsky (schwidefsky@de.ibm.com)
7  *
8  *  Derived from "arch/i386/kernel/setup.c"
9  *    Copyright (C) 1995, Linus Torvalds
10  */
11 
12 /*
13  * This file handles the architecture-dependent parts of initialization
14  */
15 
16 #define KMSG_COMPONENT "setup"
17 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
18 
19 #include <linux/errno.h>
20 #include <linux/export.h>
21 #include <linux/sched.h>
22 #include <linux/sched/task.h>
23 #include <linux/cpu.h>
24 #include <linux/kernel.h>
25 #include <linux/memblock.h>
26 #include <linux/mm.h>
27 #include <linux/stddef.h>
28 #include <linux/unistd.h>
29 #include <linux/ptrace.h>
30 #include <linux/random.h>
31 #include <linux/user.h>
32 #include <linux/tty.h>
33 #include <linux/ioport.h>
34 #include <linux/delay.h>
35 #include <linux/init.h>
36 #include <linux/initrd.h>
37 #include <linux/root_dev.h>
38 #include <linux/console.h>
39 #include <linux/kernel_stat.h>
40 #include <linux/dma-contiguous.h>
41 #include <linux/device.h>
42 #include <linux/notifier.h>
43 #include <linux/pfn.h>
44 #include <linux/ctype.h>
45 #include <linux/reboot.h>
46 #include <linux/topology.h>
47 #include <linux/kexec.h>
48 #include <linux/crash_dump.h>
49 #include <linux/memory.h>
50 #include <linux/compat.h>
51 #include <linux/start_kernel.h>
52 
53 #include <asm/ipl.h>
54 #include <asm/facility.h>
55 #include <asm/smp.h>
56 #include <asm/mmu_context.h>
57 #include <asm/cpcmd.h>
58 #include <asm/lowcore.h>
59 #include <asm/nmi.h>
60 #include <asm/irq.h>
61 #include <asm/page.h>
62 #include <asm/ptrace.h>
63 #include <asm/sections.h>
64 #include <asm/ebcdic.h>
65 #include <asm/diag.h>
66 #include <asm/os_info.h>
67 #include <asm/sclp.h>
68 #include <asm/sysinfo.h>
69 #include <asm/numa.h>
70 #include <asm/alternative.h>
71 #include <asm/nospec-branch.h>
72 #include <asm/mem_detect.h>
73 #include "entry.h"
74 
75 /*
76  * Machine setup..
77  */
78 unsigned int console_mode = 0;
79 EXPORT_SYMBOL(console_mode);
80 
81 unsigned int console_devno = -1;
82 EXPORT_SYMBOL(console_devno);
83 
84 unsigned int console_irq = -1;
85 EXPORT_SYMBOL(console_irq);
86 
87 unsigned long elf_hwcap __read_mostly = 0;
88 char elf_platform[ELF_PLATFORM_SIZE];
89 
90 unsigned long int_hwcap = 0;
91 
92 int __bootdata(noexec_disabled);
93 int __bootdata(memory_end_set);
94 unsigned long __bootdata(memory_end);
95 unsigned long __bootdata(max_physmem_end);
96 struct mem_detect_info __bootdata(mem_detect);
97 
98 unsigned long VMALLOC_START;
99 EXPORT_SYMBOL(VMALLOC_START);
100 
101 unsigned long VMALLOC_END;
102 EXPORT_SYMBOL(VMALLOC_END);
103 
104 struct page *vmemmap;
105 EXPORT_SYMBOL(vmemmap);
106 
107 unsigned long MODULES_VADDR;
108 unsigned long MODULES_END;
109 
110 /* An array with a pointer to the lowcore of every CPU. */
111 struct lowcore *lowcore_ptr[NR_CPUS];
112 EXPORT_SYMBOL(lowcore_ptr);
113 
114 /*
115  * This is set up by the setup-routine at boot-time
116  * for S390 need to find out, what we have to setup
117  * using address 0x10400 ...
118  */
119 
120 #include <asm/setup.h>
121 
122 /*
123  * condev= and conmode= setup parameter.
124  */
125 
126 static int __init condev_setup(char *str)
127 {
128 	int vdev;
129 
130 	vdev = simple_strtoul(str, &str, 0);
131 	if (vdev >= 0 && vdev < 65536) {
132 		console_devno = vdev;
133 		console_irq = -1;
134 	}
135 	return 1;
136 }
137 
138 __setup("condev=", condev_setup);
139 
140 static void __init set_preferred_console(void)
141 {
142 	if (CONSOLE_IS_3215 || CONSOLE_IS_SCLP)
143 		add_preferred_console("ttyS", 0, NULL);
144 	else if (CONSOLE_IS_3270)
145 		add_preferred_console("tty3270", 0, NULL);
146 	else if (CONSOLE_IS_VT220)
147 		add_preferred_console("ttyS", 1, NULL);
148 	else if (CONSOLE_IS_HVC)
149 		add_preferred_console("hvc", 0, NULL);
150 }
151 
152 static int __init conmode_setup(char *str)
153 {
154 #if defined(CONFIG_SCLP_CONSOLE) || defined(CONFIG_SCLP_VT220_CONSOLE)
155 	if (strncmp(str, "hwc", 4) == 0 || strncmp(str, "sclp", 5) == 0)
156                 SET_CONSOLE_SCLP;
157 #endif
158 #if defined(CONFIG_TN3215_CONSOLE)
159 	if (strncmp(str, "3215", 5) == 0)
160 		SET_CONSOLE_3215;
161 #endif
162 #if defined(CONFIG_TN3270_CONSOLE)
163 	if (strncmp(str, "3270", 5) == 0)
164 		SET_CONSOLE_3270;
165 #endif
166 	set_preferred_console();
167         return 1;
168 }
169 
170 __setup("conmode=", conmode_setup);
171 
172 static void __init conmode_default(void)
173 {
174 	char query_buffer[1024];
175 	char *ptr;
176 
177         if (MACHINE_IS_VM) {
178 		cpcmd("QUERY CONSOLE", query_buffer, 1024, NULL);
179 		console_devno = simple_strtoul(query_buffer + 5, NULL, 16);
180 		ptr = strstr(query_buffer, "SUBCHANNEL =");
181 		console_irq = simple_strtoul(ptr + 13, NULL, 16);
182 		cpcmd("QUERY TERM", query_buffer, 1024, NULL);
183 		ptr = strstr(query_buffer, "CONMODE");
184 		/*
185 		 * Set the conmode to 3215 so that the device recognition
186 		 * will set the cu_type of the console to 3215. If the
187 		 * conmode is 3270 and we don't set it back then both
188 		 * 3215 and the 3270 driver will try to access the console
189 		 * device (3215 as console and 3270 as normal tty).
190 		 */
191 		cpcmd("TERM CONMODE 3215", NULL, 0, NULL);
192 		if (ptr == NULL) {
193 #if defined(CONFIG_SCLP_CONSOLE) || defined(CONFIG_SCLP_VT220_CONSOLE)
194 			SET_CONSOLE_SCLP;
195 #endif
196 			return;
197 		}
198 		if (strncmp(ptr + 8, "3270", 4) == 0) {
199 #if defined(CONFIG_TN3270_CONSOLE)
200 			SET_CONSOLE_3270;
201 #elif defined(CONFIG_TN3215_CONSOLE)
202 			SET_CONSOLE_3215;
203 #elif defined(CONFIG_SCLP_CONSOLE) || defined(CONFIG_SCLP_VT220_CONSOLE)
204 			SET_CONSOLE_SCLP;
205 #endif
206 		} else if (strncmp(ptr + 8, "3215", 4) == 0) {
207 #if defined(CONFIG_TN3215_CONSOLE)
208 			SET_CONSOLE_3215;
209 #elif defined(CONFIG_TN3270_CONSOLE)
210 			SET_CONSOLE_3270;
211 #elif defined(CONFIG_SCLP_CONSOLE) || defined(CONFIG_SCLP_VT220_CONSOLE)
212 			SET_CONSOLE_SCLP;
213 #endif
214 		}
215 	} else if (MACHINE_IS_KVM) {
216 		if (sclp.has_vt220 && IS_ENABLED(CONFIG_SCLP_VT220_CONSOLE))
217 			SET_CONSOLE_VT220;
218 		else if (sclp.has_linemode && IS_ENABLED(CONFIG_SCLP_CONSOLE))
219 			SET_CONSOLE_SCLP;
220 		else
221 			SET_CONSOLE_HVC;
222 	} else {
223 #if defined(CONFIG_SCLP_CONSOLE) || defined(CONFIG_SCLP_VT220_CONSOLE)
224 		SET_CONSOLE_SCLP;
225 #endif
226 	}
227 	if (IS_ENABLED(CONFIG_VT) && IS_ENABLED(CONFIG_DUMMY_CONSOLE))
228 		conswitchp = &dummy_con;
229 }
230 
231 #ifdef CONFIG_CRASH_DUMP
232 static void __init setup_zfcpdump(void)
233 {
234 	if (ipl_info.type != IPL_TYPE_FCP_DUMP)
235 		return;
236 	if (OLDMEM_BASE)
237 		return;
238 	strcat(boot_command_line, " cio_ignore=all,!ipldev,!condev");
239 	console_loglevel = 2;
240 }
241 #else
242 static inline void setup_zfcpdump(void) {}
243 #endif /* CONFIG_CRASH_DUMP */
244 
245  /*
246  * Reboot, halt and power_off stubs. They just call _machine_restart,
247  * _machine_halt or _machine_power_off.
248  */
249 
250 void machine_restart(char *command)
251 {
252 	if ((!in_interrupt() && !in_atomic()) || oops_in_progress)
253 		/*
254 		 * Only unblank the console if we are called in enabled
255 		 * context or a bust_spinlocks cleared the way for us.
256 		 */
257 		console_unblank();
258 	_machine_restart(command);
259 }
260 
261 void machine_halt(void)
262 {
263 	if (!in_interrupt() || oops_in_progress)
264 		/*
265 		 * Only unblank the console if we are called in enabled
266 		 * context or a bust_spinlocks cleared the way for us.
267 		 */
268 		console_unblank();
269 	_machine_halt();
270 }
271 
272 void machine_power_off(void)
273 {
274 	if (!in_interrupt() || oops_in_progress)
275 		/*
276 		 * Only unblank the console if we are called in enabled
277 		 * context or a bust_spinlocks cleared the way for us.
278 		 */
279 		console_unblank();
280 	_machine_power_off();
281 }
282 
283 /*
284  * Dummy power off function.
285  */
286 void (*pm_power_off)(void) = machine_power_off;
287 EXPORT_SYMBOL_GPL(pm_power_off);
288 
289 static int __init parse_vmalloc(char *arg)
290 {
291 	if (!arg)
292 		return -EINVAL;
293 	VMALLOC_END = (memparse(arg, &arg) + PAGE_SIZE - 1) & PAGE_MASK;
294 	return 0;
295 }
296 early_param("vmalloc", parse_vmalloc);
297 
298 void *restart_stack __section(.data);
299 
300 unsigned long stack_alloc(void)
301 {
302 #ifdef CONFIG_VMAP_STACK
303 	return (unsigned long)
304 		__vmalloc_node_range(THREAD_SIZE, THREAD_SIZE,
305 				     VMALLOC_START, VMALLOC_END,
306 				     THREADINFO_GFP,
307 				     PAGE_KERNEL, 0, NUMA_NO_NODE,
308 				     __builtin_return_address(0));
309 #else
310 	return __get_free_pages(GFP_KERNEL, THREAD_SIZE_ORDER);
311 #endif
312 }
313 
314 void stack_free(unsigned long stack)
315 {
316 #ifdef CONFIG_VMAP_STACK
317 	vfree((void *) stack);
318 #else
319 	free_pages(stack, THREAD_SIZE_ORDER);
320 #endif
321 }
322 
323 int __init arch_early_irq_init(void)
324 {
325 	unsigned long stack;
326 
327 	stack = __get_free_pages(GFP_KERNEL, THREAD_SIZE_ORDER);
328 	if (!stack)
329 		panic("Couldn't allocate async stack");
330 	S390_lowcore.async_stack = stack + STACK_INIT_OFFSET;
331 	return 0;
332 }
333 
334 static int __init async_stack_realloc(void)
335 {
336 	unsigned long old, new;
337 
338 	old = S390_lowcore.async_stack - STACK_INIT_OFFSET;
339 	new = stack_alloc();
340 	if (!new)
341 		panic("Couldn't allocate async stack");
342 	S390_lowcore.async_stack = new + STACK_INIT_OFFSET;
343 	free_pages(old, THREAD_SIZE_ORDER);
344 	return 0;
345 }
346 early_initcall(async_stack_realloc);
347 
348 void __init arch_call_rest_init(void)
349 {
350 	struct stack_frame *frame;
351 	unsigned long stack;
352 
353 	stack = stack_alloc();
354 	if (!stack)
355 		panic("Couldn't allocate kernel stack");
356 	current->stack = (void *) stack;
357 #ifdef CONFIG_VMAP_STACK
358 	current->stack_vm_area = (void *) stack;
359 #endif
360 	set_task_stack_end_magic(current);
361 	stack += STACK_INIT_OFFSET;
362 	S390_lowcore.kernel_stack = stack;
363 	frame = (struct stack_frame *) stack;
364 	memset(frame, 0, sizeof(*frame));
365 	/* Branch to rest_init on the new stack, never returns */
366 	asm volatile(
367 		"	la	15,0(%[_frame])\n"
368 		"	jg	rest_init\n"
369 		: : [_frame] "a" (frame));
370 }
371 
372 static void __init setup_lowcore_dat_off(void)
373 {
374 	struct lowcore *lc;
375 
376 	/*
377 	 * Setup lowcore for boot cpu
378 	 */
379 	BUILD_BUG_ON(sizeof(struct lowcore) != LC_PAGES * PAGE_SIZE);
380 	lc = memblock_alloc_low(sizeof(*lc), sizeof(*lc));
381 	if (!lc)
382 		panic("%s: Failed to allocate %zu bytes align=%zx\n",
383 		      __func__, sizeof(*lc), sizeof(*lc));
384 
385 	lc->restart_psw.mask = PSW_KERNEL_BITS;
386 	lc->restart_psw.addr = (unsigned long) restart_int_handler;
387 	lc->external_new_psw.mask = PSW_KERNEL_BITS | PSW_MASK_MCHECK;
388 	lc->external_new_psw.addr = (unsigned long) ext_int_handler;
389 	lc->svc_new_psw.mask = PSW_KERNEL_BITS |
390 		PSW_MASK_IO | PSW_MASK_EXT | PSW_MASK_MCHECK;
391 	lc->svc_new_psw.addr = (unsigned long) system_call;
392 	lc->program_new_psw.mask = PSW_KERNEL_BITS | PSW_MASK_MCHECK;
393 	lc->program_new_psw.addr = (unsigned long) pgm_check_handler;
394 	lc->mcck_new_psw.mask = PSW_KERNEL_BITS;
395 	lc->mcck_new_psw.addr = (unsigned long) mcck_int_handler;
396 	lc->io_new_psw.mask = PSW_KERNEL_BITS | PSW_MASK_MCHECK;
397 	lc->io_new_psw.addr = (unsigned long) io_int_handler;
398 	lc->clock_comparator = clock_comparator_max;
399 	lc->nodat_stack = ((unsigned long) &init_thread_union)
400 		+ THREAD_SIZE - STACK_FRAME_OVERHEAD - sizeof(struct pt_regs);
401 	lc->current_task = (unsigned long)&init_task;
402 	lc->lpp = LPP_MAGIC;
403 	lc->machine_flags = S390_lowcore.machine_flags;
404 	lc->preempt_count = S390_lowcore.preempt_count;
405 	lc->stfl_fac_list = S390_lowcore.stfl_fac_list;
406 	memcpy(lc->stfle_fac_list, S390_lowcore.stfle_fac_list,
407 	       sizeof(lc->stfle_fac_list));
408 	memcpy(lc->alt_stfle_fac_list, S390_lowcore.alt_stfle_fac_list,
409 	       sizeof(lc->alt_stfle_fac_list));
410 	nmi_alloc_boot_cpu(lc);
411 	vdso_alloc_boot_cpu(lc);
412 	lc->sync_enter_timer = S390_lowcore.sync_enter_timer;
413 	lc->async_enter_timer = S390_lowcore.async_enter_timer;
414 	lc->exit_timer = S390_lowcore.exit_timer;
415 	lc->user_timer = S390_lowcore.user_timer;
416 	lc->system_timer = S390_lowcore.system_timer;
417 	lc->steal_timer = S390_lowcore.steal_timer;
418 	lc->last_update_timer = S390_lowcore.last_update_timer;
419 	lc->last_update_clock = S390_lowcore.last_update_clock;
420 
421 	/*
422 	 * Allocate the global restart stack which is the same for
423 	 * all CPUs in cast *one* of them does a PSW restart.
424 	 */
425 	restart_stack = memblock_alloc(THREAD_SIZE, THREAD_SIZE);
426 	if (!restart_stack)
427 		panic("%s: Failed to allocate %lu bytes align=0x%lx\n",
428 		      __func__, THREAD_SIZE, THREAD_SIZE);
429 	restart_stack += STACK_INIT_OFFSET;
430 
431 	/*
432 	 * Set up PSW restart to call ipl.c:do_restart(). Copy the relevant
433 	 * restart data to the absolute zero lowcore. This is necessary if
434 	 * PSW restart is done on an offline CPU that has lowcore zero.
435 	 */
436 	lc->restart_stack = (unsigned long) restart_stack;
437 	lc->restart_fn = (unsigned long) do_restart;
438 	lc->restart_data = 0;
439 	lc->restart_source = -1UL;
440 
441 	/* Setup absolute zero lowcore */
442 	mem_assign_absolute(S390_lowcore.restart_stack, lc->restart_stack);
443 	mem_assign_absolute(S390_lowcore.restart_fn, lc->restart_fn);
444 	mem_assign_absolute(S390_lowcore.restart_data, lc->restart_data);
445 	mem_assign_absolute(S390_lowcore.restart_source, lc->restart_source);
446 	mem_assign_absolute(S390_lowcore.restart_psw, lc->restart_psw);
447 
448 #ifdef CONFIG_SMP
449 	lc->spinlock_lockval = arch_spin_lockval(0);
450 	lc->spinlock_index = 0;
451 	arch_spin_lock_setup(0);
452 #endif
453 	lc->br_r1_trampoline = 0x07f1;	/* br %r1 */
454 
455 	set_prefix((u32)(unsigned long) lc);
456 	lowcore_ptr[0] = lc;
457 }
458 
459 static void __init setup_lowcore_dat_on(void)
460 {
461 	__ctl_clear_bit(0, 28);
462 	S390_lowcore.external_new_psw.mask |= PSW_MASK_DAT;
463 	S390_lowcore.svc_new_psw.mask |= PSW_MASK_DAT;
464 	S390_lowcore.program_new_psw.mask |= PSW_MASK_DAT;
465 	S390_lowcore.io_new_psw.mask |= PSW_MASK_DAT;
466 	__ctl_set_bit(0, 28);
467 }
468 
469 static struct resource code_resource = {
470 	.name  = "Kernel code",
471 	.flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM,
472 };
473 
474 static struct resource data_resource = {
475 	.name = "Kernel data",
476 	.flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM,
477 };
478 
479 static struct resource bss_resource = {
480 	.name = "Kernel bss",
481 	.flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM,
482 };
483 
484 static struct resource __initdata *standard_resources[] = {
485 	&code_resource,
486 	&data_resource,
487 	&bss_resource,
488 };
489 
490 static void __init setup_resources(void)
491 {
492 	struct resource *res, *std_res, *sub_res;
493 	struct memblock_region *reg;
494 	int j;
495 
496 	code_resource.start = (unsigned long) _text;
497 	code_resource.end = (unsigned long) _etext - 1;
498 	data_resource.start = (unsigned long) _etext;
499 	data_resource.end = (unsigned long) _edata - 1;
500 	bss_resource.start = (unsigned long) __bss_start;
501 	bss_resource.end = (unsigned long) __bss_stop - 1;
502 
503 	for_each_memblock(memory, reg) {
504 		res = memblock_alloc(sizeof(*res), 8);
505 		if (!res)
506 			panic("%s: Failed to allocate %zu bytes align=0x%x\n",
507 			      __func__, sizeof(*res), 8);
508 		res->flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM;
509 
510 		res->name = "System RAM";
511 		res->start = reg->base;
512 		res->end = reg->base + reg->size - 1;
513 		request_resource(&iomem_resource, res);
514 
515 		for (j = 0; j < ARRAY_SIZE(standard_resources); j++) {
516 			std_res = standard_resources[j];
517 			if (std_res->start < res->start ||
518 			    std_res->start > res->end)
519 				continue;
520 			if (std_res->end > res->end) {
521 				sub_res = memblock_alloc(sizeof(*sub_res), 8);
522 				if (!sub_res)
523 					panic("%s: Failed to allocate %zu bytes align=0x%x\n",
524 					      __func__, sizeof(*sub_res), 8);
525 				*sub_res = *std_res;
526 				sub_res->end = res->end;
527 				std_res->start = res->end + 1;
528 				request_resource(res, sub_res);
529 			} else {
530 				request_resource(res, std_res);
531 			}
532 		}
533 	}
534 #ifdef CONFIG_CRASH_DUMP
535 	/*
536 	 * Re-add removed crash kernel memory as reserved memory. This makes
537 	 * sure it will be mapped with the identity mapping and struct pages
538 	 * will be created, so it can be resized later on.
539 	 * However add it later since the crash kernel resource should not be
540 	 * part of the System RAM resource.
541 	 */
542 	if (crashk_res.end) {
543 		memblock_add_node(crashk_res.start, resource_size(&crashk_res), 0);
544 		memblock_reserve(crashk_res.start, resource_size(&crashk_res));
545 		insert_resource(&iomem_resource, &crashk_res);
546 	}
547 #endif
548 }
549 
550 static void __init setup_memory_end(void)
551 {
552 	unsigned long vmax, vmalloc_size, tmp;
553 
554 	/* Choose kernel address space layout: 3 or 4 levels. */
555 	vmalloc_size = VMALLOC_END ?: (128UL << 30) - MODULES_LEN;
556 	if (IS_ENABLED(CONFIG_KASAN)) {
557 		vmax = IS_ENABLED(CONFIG_KASAN_S390_4_LEVEL_PAGING)
558 			   ? _REGION1_SIZE
559 			   : _REGION2_SIZE;
560 	} else {
561 		tmp = (memory_end ?: max_physmem_end) / PAGE_SIZE;
562 		tmp = tmp * (sizeof(struct page) + PAGE_SIZE);
563 		if (tmp + vmalloc_size + MODULES_LEN <= _REGION2_SIZE)
564 			vmax = _REGION2_SIZE; /* 3-level kernel page table */
565 		else
566 			vmax = _REGION1_SIZE; /* 4-level kernel page table */
567 	}
568 
569 	/* module area is at the end of the kernel address space. */
570 	MODULES_END = vmax;
571 	MODULES_VADDR = MODULES_END - MODULES_LEN;
572 	VMALLOC_END = MODULES_VADDR;
573 	VMALLOC_START = VMALLOC_END - vmalloc_size;
574 
575 	/* Split remaining virtual space between 1:1 mapping & vmemmap array */
576 	tmp = VMALLOC_START / (PAGE_SIZE + sizeof(struct page));
577 	/* vmemmap contains a multiple of PAGES_PER_SECTION struct pages */
578 	tmp = SECTION_ALIGN_UP(tmp);
579 	tmp = VMALLOC_START - tmp * sizeof(struct page);
580 	tmp &= ~((vmax >> 11) - 1);	/* align to page table level */
581 	tmp = min(tmp, 1UL << MAX_PHYSMEM_BITS);
582 	vmemmap = (struct page *) tmp;
583 
584 	/* Take care that memory_end is set and <= vmemmap */
585 	memory_end = min(memory_end ?: max_physmem_end, (unsigned long)vmemmap);
586 #ifdef CONFIG_KASAN
587 	/* fit in kasan shadow memory region between 1:1 and vmemmap */
588 	memory_end = min(memory_end, KASAN_SHADOW_START);
589 	vmemmap = max(vmemmap, (struct page *)KASAN_SHADOW_END);
590 #endif
591 	max_pfn = max_low_pfn = PFN_DOWN(memory_end);
592 	memblock_remove(memory_end, ULONG_MAX);
593 
594 	pr_notice("The maximum memory size is %luMB\n", memory_end >> 20);
595 }
596 
597 #ifdef CONFIG_CRASH_DUMP
598 
599 /*
600  * When kdump is enabled, we have to ensure that no memory from
601  * the area [0 - crashkernel memory size] and
602  * [crashk_res.start - crashk_res.end] is set offline.
603  */
604 static int kdump_mem_notifier(struct notifier_block *nb,
605 			      unsigned long action, void *data)
606 {
607 	struct memory_notify *arg = data;
608 
609 	if (action != MEM_GOING_OFFLINE)
610 		return NOTIFY_OK;
611 	if (arg->start_pfn < PFN_DOWN(resource_size(&crashk_res)))
612 		return NOTIFY_BAD;
613 	if (arg->start_pfn > PFN_DOWN(crashk_res.end))
614 		return NOTIFY_OK;
615 	if (arg->start_pfn + arg->nr_pages - 1 < PFN_DOWN(crashk_res.start))
616 		return NOTIFY_OK;
617 	return NOTIFY_BAD;
618 }
619 
620 static struct notifier_block kdump_mem_nb = {
621 	.notifier_call = kdump_mem_notifier,
622 };
623 
624 #endif
625 
626 /*
627  * Make sure that the area behind memory_end is protected
628  */
629 static void reserve_memory_end(void)
630 {
631 	if (memory_end_set)
632 		memblock_reserve(memory_end, ULONG_MAX);
633 }
634 
635 /*
636  * Make sure that oldmem, where the dump is stored, is protected
637  */
638 static void reserve_oldmem(void)
639 {
640 #ifdef CONFIG_CRASH_DUMP
641 	if (OLDMEM_BASE)
642 		/* Forget all memory above the running kdump system */
643 		memblock_reserve(OLDMEM_SIZE, (phys_addr_t)ULONG_MAX);
644 #endif
645 }
646 
647 /*
648  * Make sure that oldmem, where the dump is stored, is protected
649  */
650 static void remove_oldmem(void)
651 {
652 #ifdef CONFIG_CRASH_DUMP
653 	if (OLDMEM_BASE)
654 		/* Forget all memory above the running kdump system */
655 		memblock_remove(OLDMEM_SIZE, (phys_addr_t)ULONG_MAX);
656 #endif
657 }
658 
659 /*
660  * Reserve memory for kdump kernel to be loaded with kexec
661  */
662 static void __init reserve_crashkernel(void)
663 {
664 #ifdef CONFIG_CRASH_DUMP
665 	unsigned long long crash_base, crash_size;
666 	phys_addr_t low, high;
667 	int rc;
668 
669 	rc = parse_crashkernel(boot_command_line, memory_end, &crash_size,
670 			       &crash_base);
671 
672 	crash_base = ALIGN(crash_base, KEXEC_CRASH_MEM_ALIGN);
673 	crash_size = ALIGN(crash_size, KEXEC_CRASH_MEM_ALIGN);
674 	if (rc || crash_size == 0)
675 		return;
676 
677 	if (memblock.memory.regions[0].size < crash_size) {
678 		pr_info("crashkernel reservation failed: %s\n",
679 			"first memory chunk must be at least crashkernel size");
680 		return;
681 	}
682 
683 	low = crash_base ?: OLDMEM_BASE;
684 	high = low + crash_size;
685 	if (low >= OLDMEM_BASE && high <= OLDMEM_BASE + OLDMEM_SIZE) {
686 		/* The crashkernel fits into OLDMEM, reuse OLDMEM */
687 		crash_base = low;
688 	} else {
689 		/* Find suitable area in free memory */
690 		low = max_t(unsigned long, crash_size, sclp.hsa_size);
691 		high = crash_base ? crash_base + crash_size : ULONG_MAX;
692 
693 		if (crash_base && crash_base < low) {
694 			pr_info("crashkernel reservation failed: %s\n",
695 				"crash_base too low");
696 			return;
697 		}
698 		low = crash_base ?: low;
699 		crash_base = memblock_find_in_range(low, high, crash_size,
700 						    KEXEC_CRASH_MEM_ALIGN);
701 	}
702 
703 	if (!crash_base) {
704 		pr_info("crashkernel reservation failed: %s\n",
705 			"no suitable area found");
706 		return;
707 	}
708 
709 	if (register_memory_notifier(&kdump_mem_nb))
710 		return;
711 
712 	if (!OLDMEM_BASE && MACHINE_IS_VM)
713 		diag10_range(PFN_DOWN(crash_base), PFN_DOWN(crash_size));
714 	crashk_res.start = crash_base;
715 	crashk_res.end = crash_base + crash_size - 1;
716 	memblock_remove(crash_base, crash_size);
717 	pr_info("Reserving %lluMB of memory at %lluMB "
718 		"for crashkernel (System RAM: %luMB)\n",
719 		crash_size >> 20, crash_base >> 20,
720 		(unsigned long)memblock.memory.total_size >> 20);
721 	os_info_crashkernel_add(crash_base, crash_size);
722 #endif
723 }
724 
725 /*
726  * Reserve the initrd from being used by memblock
727  */
728 static void __init reserve_initrd(void)
729 {
730 #ifdef CONFIG_BLK_DEV_INITRD
731 	if (!INITRD_START || !INITRD_SIZE)
732 		return;
733 	initrd_start = INITRD_START;
734 	initrd_end = initrd_start + INITRD_SIZE;
735 	memblock_reserve(INITRD_START, INITRD_SIZE);
736 #endif
737 }
738 
739 static void __init reserve_mem_detect_info(void)
740 {
741 	unsigned long start, size;
742 
743 	get_mem_detect_reserved(&start, &size);
744 	if (size)
745 		memblock_reserve(start, size);
746 }
747 
748 static void __init free_mem_detect_info(void)
749 {
750 	unsigned long start, size;
751 
752 	get_mem_detect_reserved(&start, &size);
753 	if (size)
754 		memblock_free(start, size);
755 }
756 
757 static void __init memblock_physmem_add(phys_addr_t start, phys_addr_t size)
758 {
759 	memblock_dbg("memblock_physmem_add: [%#016llx-%#016llx]\n",
760 		     start, start + size - 1);
761 	memblock_add_range(&memblock.memory, start, size, 0, 0);
762 	memblock_add_range(&memblock.physmem, start, size, 0, 0);
763 }
764 
765 static const char * __init get_mem_info_source(void)
766 {
767 	switch (mem_detect.info_source) {
768 	case MEM_DETECT_SCLP_STOR_INFO:
769 		return "sclp storage info";
770 	case MEM_DETECT_DIAG260:
771 		return "diag260";
772 	case MEM_DETECT_SCLP_READ_INFO:
773 		return "sclp read info";
774 	case MEM_DETECT_BIN_SEARCH:
775 		return "binary search";
776 	}
777 	return "none";
778 }
779 
780 static void __init memblock_add_mem_detect_info(void)
781 {
782 	unsigned long start, end;
783 	int i;
784 
785 	memblock_dbg("physmem info source: %s (%hhd)\n",
786 		     get_mem_info_source(), mem_detect.info_source);
787 	/* keep memblock lists close to the kernel */
788 	memblock_set_bottom_up(true);
789 	for_each_mem_detect_block(i, &start, &end)
790 		memblock_physmem_add(start, end - start);
791 	memblock_set_bottom_up(false);
792 	memblock_dump_all();
793 }
794 
795 /*
796  * Check for initrd being in usable memory
797  */
798 static void __init check_initrd(void)
799 {
800 #ifdef CONFIG_BLK_DEV_INITRD
801 	if (INITRD_START && INITRD_SIZE &&
802 	    !memblock_is_region_memory(INITRD_START, INITRD_SIZE)) {
803 		pr_err("The initial RAM disk does not fit into the memory\n");
804 		memblock_free(INITRD_START, INITRD_SIZE);
805 		initrd_start = initrd_end = 0;
806 	}
807 #endif
808 }
809 
810 /*
811  * Reserve memory used for lowcore/command line/kernel image.
812  */
813 static void __init reserve_kernel(void)
814 {
815 	unsigned long start_pfn = PFN_UP(__pa(_end));
816 
817 	memblock_reserve(0, PARMAREA_END);
818 	memblock_reserve((unsigned long)_stext, PFN_PHYS(start_pfn)
819 			 - (unsigned long)_stext);
820 }
821 
822 static void __init setup_memory(void)
823 {
824 	struct memblock_region *reg;
825 
826 	/*
827 	 * Init storage key for present memory
828 	 */
829 	for_each_memblock(memory, reg) {
830 		storage_key_init_range(reg->base, reg->base + reg->size);
831 	}
832 	psw_set_key(PAGE_DEFAULT_KEY);
833 
834 	/* Only cosmetics */
835 	memblock_enforce_memory_limit(memblock_end_of_DRAM());
836 }
837 
838 /*
839  * Setup hardware capabilities.
840  */
841 static int __init setup_hwcaps(void)
842 {
843 	static const int stfl_bits[6] = { 0, 2, 7, 17, 19, 21 };
844 	struct cpuid cpu_id;
845 	int i;
846 
847 	/*
848 	 * The store facility list bits numbers as found in the principles
849 	 * of operation are numbered with bit 1UL<<31 as number 0 to
850 	 * bit 1UL<<0 as number 31.
851 	 *   Bit 0: instructions named N3, "backported" to esa-mode
852 	 *   Bit 2: z/Architecture mode is active
853 	 *   Bit 7: the store-facility-list-extended facility is installed
854 	 *   Bit 17: the message-security assist is installed
855 	 *   Bit 19: the long-displacement facility is installed
856 	 *   Bit 21: the extended-immediate facility is installed
857 	 *   Bit 22: extended-translation facility 3 is installed
858 	 *   Bit 30: extended-translation facility 3 enhancement facility
859 	 * These get translated to:
860 	 *   HWCAP_S390_ESAN3 bit 0, HWCAP_S390_ZARCH bit 1,
861 	 *   HWCAP_S390_STFLE bit 2, HWCAP_S390_MSA bit 3,
862 	 *   HWCAP_S390_LDISP bit 4, HWCAP_S390_EIMM bit 5 and
863 	 *   HWCAP_S390_ETF3EH bit 8 (22 && 30).
864 	 */
865 	for (i = 0; i < 6; i++)
866 		if (test_facility(stfl_bits[i]))
867 			elf_hwcap |= 1UL << i;
868 
869 	if (test_facility(22) && test_facility(30))
870 		elf_hwcap |= HWCAP_S390_ETF3EH;
871 
872 	/*
873 	 * Check for additional facilities with store-facility-list-extended.
874 	 * stfle stores doublewords (8 byte) with bit 1ULL<<63 as bit 0
875 	 * and 1ULL<<0 as bit 63. Bits 0-31 contain the same information
876 	 * as stored by stfl, bits 32-xxx contain additional facilities.
877 	 * How many facility words are stored depends on the number of
878 	 * doublewords passed to the instruction. The additional facilities
879 	 * are:
880 	 *   Bit 42: decimal floating point facility is installed
881 	 *   Bit 44: perform floating point operation facility is installed
882 	 * translated to:
883 	 *   HWCAP_S390_DFP bit 6 (42 && 44).
884 	 */
885 	if ((elf_hwcap & (1UL << 2)) && test_facility(42) && test_facility(44))
886 		elf_hwcap |= HWCAP_S390_DFP;
887 
888 	/*
889 	 * Huge page support HWCAP_S390_HPAGE is bit 7.
890 	 */
891 	if (MACHINE_HAS_EDAT1)
892 		elf_hwcap |= HWCAP_S390_HPAGE;
893 
894 	/*
895 	 * 64-bit register support for 31-bit processes
896 	 * HWCAP_S390_HIGH_GPRS is bit 9.
897 	 */
898 	elf_hwcap |= HWCAP_S390_HIGH_GPRS;
899 
900 	/*
901 	 * Transactional execution support HWCAP_S390_TE is bit 10.
902 	 */
903 	if (MACHINE_HAS_TE)
904 		elf_hwcap |= HWCAP_S390_TE;
905 
906 	/*
907 	 * Vector extension HWCAP_S390_VXRS is bit 11. The Vector extension
908 	 * can be disabled with the "novx" parameter. Use MACHINE_HAS_VX
909 	 * instead of facility bit 129.
910 	 */
911 	if (MACHINE_HAS_VX) {
912 		elf_hwcap |= HWCAP_S390_VXRS;
913 		if (test_facility(134))
914 			elf_hwcap |= HWCAP_S390_VXRS_EXT;
915 		if (test_facility(135))
916 			elf_hwcap |= HWCAP_S390_VXRS_BCD;
917 	}
918 
919 	/*
920 	 * Guarded storage support HWCAP_S390_GS is bit 12.
921 	 */
922 	if (MACHINE_HAS_GS)
923 		elf_hwcap |= HWCAP_S390_GS;
924 
925 	get_cpu_id(&cpu_id);
926 	add_device_randomness(&cpu_id, sizeof(cpu_id));
927 	switch (cpu_id.machine) {
928 	case 0x2064:
929 	case 0x2066:
930 	default:	/* Use "z900" as default for 64 bit kernels. */
931 		strcpy(elf_platform, "z900");
932 		break;
933 	case 0x2084:
934 	case 0x2086:
935 		strcpy(elf_platform, "z990");
936 		break;
937 	case 0x2094:
938 	case 0x2096:
939 		strcpy(elf_platform, "z9-109");
940 		break;
941 	case 0x2097:
942 	case 0x2098:
943 		strcpy(elf_platform, "z10");
944 		break;
945 	case 0x2817:
946 	case 0x2818:
947 		strcpy(elf_platform, "z196");
948 		break;
949 	case 0x2827:
950 	case 0x2828:
951 		strcpy(elf_platform, "zEC12");
952 		break;
953 	case 0x2964:
954 	case 0x2965:
955 		strcpy(elf_platform, "z13");
956 		break;
957 	case 0x3906:
958 	case 0x3907:
959 		strcpy(elf_platform, "z14");
960 		break;
961 	}
962 
963 	/*
964 	 * Virtualization support HWCAP_INT_SIE is bit 0.
965 	 */
966 	if (sclp.has_sief2)
967 		int_hwcap |= HWCAP_INT_SIE;
968 
969 	return 0;
970 }
971 arch_initcall(setup_hwcaps);
972 
973 /*
974  * Add system information as device randomness
975  */
976 static void __init setup_randomness(void)
977 {
978 	struct sysinfo_3_2_2 *vmms;
979 
980 	vmms = (struct sysinfo_3_2_2 *) memblock_phys_alloc(PAGE_SIZE,
981 							    PAGE_SIZE);
982 	if (!vmms)
983 		panic("Failed to allocate memory for sysinfo structure\n");
984 
985 	if (stsi(vmms, 3, 2, 2) == 0 && vmms->count)
986 		add_device_randomness(&vmms->vm, sizeof(vmms->vm[0]) * vmms->count);
987 	memblock_free((unsigned long) vmms, PAGE_SIZE);
988 }
989 
990 /*
991  * Find the correct size for the task_struct. This depends on
992  * the size of the struct fpu at the end of the thread_struct
993  * which is embedded in the task_struct.
994  */
995 static void __init setup_task_size(void)
996 {
997 	int task_size = sizeof(struct task_struct);
998 
999 	if (!MACHINE_HAS_VX) {
1000 		task_size -= sizeof(__vector128) * __NUM_VXRS;
1001 		task_size += sizeof(freg_t) * __NUM_FPRS;
1002 	}
1003 	arch_task_struct_size = task_size;
1004 }
1005 
1006 /*
1007  * Issue diagnose 318 to set the control program name and
1008  * version codes.
1009  */
1010 static void __init setup_control_program_code(void)
1011 {
1012 	union diag318_info diag318_info = {
1013 		.cpnc = CPNC_LINUX,
1014 		.cpvc_linux = 0,
1015 		.cpvc_distro = {0},
1016 	};
1017 
1018 	if (!sclp.has_diag318)
1019 		return;
1020 
1021 	diag_stat_inc(DIAG_STAT_X318);
1022 	asm volatile("diag %0,0,0x318\n" : : "d" (diag318_info.val));
1023 }
1024 
1025 /*
1026  * Setup function called from init/main.c just after the banner
1027  * was printed.
1028  */
1029 
1030 void __init setup_arch(char **cmdline_p)
1031 {
1032         /*
1033          * print what head.S has found out about the machine
1034          */
1035 	if (MACHINE_IS_VM)
1036 		pr_info("Linux is running as a z/VM "
1037 			"guest operating system in 64-bit mode\n");
1038 	else if (MACHINE_IS_KVM)
1039 		pr_info("Linux is running under KVM in 64-bit mode\n");
1040 	else if (MACHINE_IS_LPAR)
1041 		pr_info("Linux is running natively in 64-bit mode\n");
1042 	else
1043 		pr_info("Linux is running as a guest in 64-bit mode\n");
1044 
1045 	/* Have one command line that is parsed and saved in /proc/cmdline */
1046 	/* boot_command_line has been already set up in early.c */
1047 	*cmdline_p = boot_command_line;
1048 
1049         ROOT_DEV = Root_RAM0;
1050 
1051 	/* Is init_mm really needed? */
1052 	init_mm.start_code = PAGE_OFFSET;
1053 	init_mm.end_code = (unsigned long) _etext;
1054 	init_mm.end_data = (unsigned long) _edata;
1055 	init_mm.brk = (unsigned long) _end;
1056 
1057 	if (IS_ENABLED(CONFIG_EXPOLINE_AUTO))
1058 		nospec_auto_detect();
1059 
1060 	parse_early_param();
1061 #ifdef CONFIG_CRASH_DUMP
1062 	/* Deactivate elfcorehdr= kernel parameter */
1063 	elfcorehdr_addr = ELFCORE_ADDR_MAX;
1064 #endif
1065 
1066 	os_info_init();
1067 	setup_ipl();
1068 	setup_task_size();
1069 	setup_control_program_code();
1070 
1071 	/* Do some memory reservations *before* memory is added to memblock */
1072 	reserve_memory_end();
1073 	reserve_oldmem();
1074 	reserve_kernel();
1075 	reserve_initrd();
1076 	reserve_mem_detect_info();
1077 	memblock_allow_resize();
1078 
1079 	/* Get information about *all* installed memory */
1080 	memblock_add_mem_detect_info();
1081 
1082 	free_mem_detect_info();
1083 	remove_oldmem();
1084 
1085 	/*
1086 	 * Make sure all chunks are MAX_ORDER aligned so we don't need the
1087 	 * extra checks that HOLES_IN_ZONE would require.
1088 	 *
1089 	 * Is this still required?
1090 	 */
1091 	memblock_trim_memory(1UL << (MAX_ORDER - 1 + PAGE_SHIFT));
1092 
1093 	setup_memory_end();
1094 	setup_memory();
1095 	dma_contiguous_reserve(memory_end);
1096 	vmcp_cma_reserve();
1097 
1098 	check_initrd();
1099 	reserve_crashkernel();
1100 #ifdef CONFIG_CRASH_DUMP
1101 	/*
1102 	 * Be aware that smp_save_dump_cpus() triggers a system reset.
1103 	 * Therefore CPU and device initialization should be done afterwards.
1104 	 */
1105 	smp_save_dump_cpus();
1106 #endif
1107 
1108 	setup_resources();
1109 	setup_lowcore_dat_off();
1110 	smp_fill_possible_mask();
1111 	cpu_detect_mhz_feature();
1112         cpu_init();
1113 	numa_setup();
1114 	smp_detect_cpus();
1115 	topology_init_early();
1116 
1117 	/*
1118 	 * Create kernel page tables and switch to virtual addressing.
1119 	 */
1120         paging_init();
1121 
1122 	/*
1123 	 * After paging_init created the kernel page table, the new PSWs
1124 	 * in lowcore can now run with DAT enabled.
1125 	 */
1126 	setup_lowcore_dat_on();
1127 
1128         /* Setup default console */
1129 	conmode_default();
1130 	set_preferred_console();
1131 
1132 	apply_alternative_instructions();
1133 	if (IS_ENABLED(CONFIG_EXPOLINE))
1134 		nospec_init_branches();
1135 
1136 	/* Setup zfcpdump support */
1137 	setup_zfcpdump();
1138 
1139 	/* Add system specific data to the random pool */
1140 	setup_randomness();
1141 }
1142