Merge tag 'pm-6.12-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael...
[linux-block.git] / arch / s390 / boot / boot.h
CommitLineData
8f75582a
VG
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef BOOT_BOOT_H
3#define BOOT_BOOT_H
4
256d78d0 5#include <linux/types.h>
9a78c70a 6
834979c2
HC
7#define IPL_START 0x200
8
9#ifndef __ASSEMBLY__
10
f913a660
VG
11#include <asm/physmem_info.h>
12
bd50b743
AG
13struct machine_info {
14 unsigned char has_edat1 : 1;
15 unsigned char has_edat2 : 1;
16 unsigned char has_nx : 1;
17};
18
9c3205b2 19struct vmlinux_info {
bb1520d5 20 unsigned long entry;
9c3205b2
AG
21 unsigned long image_size; /* does not include .bss */
22 unsigned long bss_size; /* uncompressed image .bss size */
23 unsigned long bootdata_off;
24 unsigned long bootdata_size;
25 unsigned long bootdata_preserved_off;
26 unsigned long bootdata_preserved_size;
3334fda6
AG
27 unsigned long got_start;
28 unsigned long got_end;
9c3205b2 29 unsigned long amode31_size;
bb1520d5
AG
30 unsigned long init_mm_off;
31 unsigned long swapper_pg_dir_off;
32 unsigned long invalid_pg_dir_off;
7f9d8599
SS
33 unsigned long alt_instructions;
34 unsigned long alt_instructions_end;
557b1970
VG
35#ifdef CONFIG_KASAN
36 unsigned long kasan_early_shadow_page_off;
37 unsigned long kasan_early_shadow_pte_off;
38 unsigned long kasan_early_shadow_pmd_off;
39 unsigned long kasan_early_shadow_pud_off;
40 unsigned long kasan_early_shadow_p4d_off;
41#endif
9c3205b2
AG
42};
43
8f75582a 44void startup_kernel(void);
f913a660
VG
45unsigned long detect_max_physmem_end(void);
46void detect_physmem_online_ranges(unsigned long max_physmem_end);
8c37cb7d 47void physmem_set_usable_limit(unsigned long limit);
f913a660
VG
48void physmem_reserve(enum reserved_range_type type, unsigned long addr, unsigned long size);
49void physmem_free(enum reserved_range_type type);
50/* for continuous/multiple allocations per type */
51unsigned long physmem_alloc_top_down(enum reserved_range_type type, unsigned long size,
52 unsigned long align);
53/* for single allocations, 1 per type */
54unsigned long physmem_alloc_range(enum reserved_range_type type, unsigned long size,
55 unsigned long align, unsigned long min, unsigned long max,
56 bool die_on_oom);
6e259bc5 57unsigned long get_physmem_alloc_pos(void);
f913a660
VG
58bool ipl_report_certs_intersects(unsigned long addr, unsigned long size,
59 unsigned long *intersection_start);
73045a08 60bool is_ipl_block_dump(void);
49698745 61void store_ipl_parmblock(void);
f913a660
VG
62int read_ipl_report(void);
63void save_ipl_cert_comp_list(void);
49698745 64void setup_boot_command_line(void);
b5e80459 65void parse_boot_command_line(void);
868202ce 66void verify_facilities(void);
6d85dac2 67void print_missing_facilities(void);
f1d3c532 68void sclp_early_setup_buffer(void);
724dc336 69void print_pgm_check_info(void);
6e259bc5
VG
70unsigned long randomize_within_range(unsigned long size, unsigned long align,
71 unsigned long min, unsigned long max);
c98d2eca 72void setup_vmem(unsigned long kernel_start, unsigned long kernel_end, unsigned long asce_limit);
bfda6108 73void __printf(1, 2) boot_printk(const char *fmt, ...);
f913a660 74void print_stacktrace(unsigned long sp);
9c3205b2 75void error(char *m);
c98d2eca 76int get_random(unsigned long limit, unsigned long *value);
b2d24b97 77
bd50b743
AG
78extern struct machine_info machine;
79
7fadcc07 80/* Symbols defined by linker scripts */
6abe2819 81extern const char kernel_version[];
73045a08 82extern unsigned long memory_limit;
0c4f2623 83extern unsigned long vmalloc_size;
73045a08 84extern int vmalloc_size_set;
7fadcc07
AE
85extern char __boot_data_start[], __boot_data_end[];
86extern char __boot_data_preserved_start[], __boot_data_preserved_end[];
4394a507 87extern char __vmlinux_relocs_64_start[], __vmlinux_relocs_64_end[];
7fadcc07 88extern char _decompressor_syms_start[], _decompressor_syms_end[];
256d78d0 89extern char _stack_start[], _stack_end[];
f913a660 90extern char _end[], _decompressor_end[];
9c3205b2
AG
91extern unsigned char _compressed_start[];
92extern unsigned char _compressed_end[];
93extern struct vmlinux_info _vmlinux_info;
5ade5be4 94
9c3205b2 95#define vmlinux _vmlinux_info
9641b8cc 96
5ade5be4 97#define __lowcore_pa(x) ((unsigned long)(x) % sizeof(struct lowcore))
2154e0b3 98#define __abs_lowcore_pa(x) (((unsigned long)(x) - __abs_lowcore) % sizeof(struct lowcore))
c98d2eca
AG
99#define __kernel_va(x) ((void *)((unsigned long)(x) - __kaslr_offset_phys + __kaslr_offset))
100#define __kernel_pa(x) ((unsigned long)(x) - __kaslr_offset + __kaslr_offset_phys)
101#define __identity_va(x) ((void *)((unsigned long)(x) + __identity_base))
102#define __identity_pa(x) ((unsigned long)(x) - __identity_base)
2154e0b3 103
f913a660
VG
104static inline bool intersects(unsigned long addr0, unsigned long size0,
105 unsigned long addr1, unsigned long size1)
106{
107 return addr0 + size0 > addr1 && addr1 + size1 > addr0;
108}
834979c2 109#endif /* __ASSEMBLY__ */
8f75582a 110#endif /* BOOT_BOOT_H */