misc.h 5.69 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4 5
#ifndef BOOT_COMPRESSED_MISC_H
#define BOOT_COMPRESSED_MISC_H

/*
6 7 8 9
 * Special hack: we have to be careful, because no indirections are allowed here,
 * and paravirt_ops is a kind of one. As it will only run in baremetal anyway,
 * we just keep it from happening. (This list needs to be extended when new
 * paravirt and debugging variants are added.)
10 11
 */
#undef CONFIG_PARAVIRT
12
#undef CONFIG_PARAVIRT_XXL
13
#undef CONFIG_PARAVIRT_SPINLOCKS
14
#undef CONFIG_KASAN
15
#undef CONFIG_KASAN_GENERIC
16

17 18
#define __NO_FORTIFY

19 20
/* cpu_feature_enabled() cannot be used this early */
#define USE_EARLY_PGTABLE_L5
21

22 23 24 25
#include <linux/linkage.h>
#include <linux/screen_info.h>
#include <linux/elf.h>
#include <linux/io.h>
26
#include <linux/efi.h>
27 28 29
#include <asm/page.h>
#include <asm/boot.h>
#include <asm/bootparam.h>
30
#include <asm/desc_defs.h>
31

32 33 34
#define BOOT_CTYPE_H
#include <linux/acpi.h>

35
#define BOOT_BOOT_H
36
#include "../ctype.h"
37

38 39 40 41 42 43
#ifdef CONFIG_X86_64
#define memptr long
#else
#define memptr unsigned
#endif

44 45 46
/* boot/compressed/vmlinux start and end markers */
extern char _head[], _end[];

47
/* misc.c */
48 49
extern memptr free_mem_ptr;
extern memptr free_mem_end_ptr;
50 51
void *malloc(int size);
void free(void *where);
52
extern struct boot_params *boot_params;
53
void __putstr(const char *s);
54
void __puthex(unsigned long value);
55
#define error_putstr(__x)  __putstr(__x)
56
#define error_puthex(__x)  __puthex(__x)
57 58 59 60

#ifdef CONFIG_X86_VERBOSE_BOOTUP

#define debug_putstr(__x)  __putstr(__x)
61 62 63 64 65 66
#define debug_puthex(__x)  __puthex(__x)
#define debug_putaddr(__x) { \
		debug_putstr(#__x ": 0x"); \
		debug_puthex((unsigned long)(__x)); \
		debug_putstr("\n"); \
	}
67 68 69 70 71

#else

static inline void debug_putstr(const char *s)
{ }
72
static inline void debug_puthex(unsigned long value)
73 74
{ }
#define debug_putaddr(x) /* */
75 76

#endif
77 78 79 80 81

/* cmdline.c */
int cmdline_find_option(const char *option, char *buffer, int bufsize);
int cmdline_find_option_bool(const char *option);

82
struct mem_vector {
83 84
	u64 start;
	u64 size;
85
};
86

87
#ifdef CONFIG_RANDOMIZE_BASE
88
/* kaslr.c */
89 90 91 92 93
void choose_random_location(unsigned long input,
			    unsigned long input_size,
			    unsigned long *output,
			    unsigned long output_size,
			    unsigned long *virt_addr);
94
#else
95 96 97 98 99
static inline void choose_random_location(unsigned long input,
					  unsigned long input_size,
					  unsigned long *output,
					  unsigned long output_size,
					  unsigned long *virt_addr)
100 101 102
{
}
#endif
103

104 105 106
/* cpuflags.c */
bool has_cpuflag(int flag);

107
#ifdef CONFIG_X86_64
108 109
extern int set_page_decrypted(unsigned long address);
extern int set_page_encrypted(unsigned long address);
110
extern int set_page_non_present(unsigned long address);
111 112 113
extern unsigned char _pgtable[];
#endif

114
#ifdef CONFIG_EARLY_PRINTK
115
/* early_serial_console.c */
116 117 118
extern int early_serial_base;
void console_init(void);
#else
119 120 121 122 123
static const int early_serial_base;
static inline void console_init(void)
{ }
#endif

124
#ifdef CONFIG_AMD_MEM_ENCRYPT
125
void sev_enable(struct boot_params *bp);
126
void sev_es_shutdown_ghcb(void);
127
extern bool sev_es_check_ghcb_fault(unsigned long address);
128 129
void snp_set_page_private(unsigned long paddr);
void snp_set_page_shared(unsigned long paddr);
130
void sev_prep_identity_maps(unsigned long top_level_pgt);
131
#else
132
static inline void sev_enable(struct boot_params *bp) { }
133
static inline void sev_es_shutdown_ghcb(void) { }
134 135 136 137
static inline bool sev_es_check_ghcb_fault(unsigned long address)
{
	return false;
}
138 139
static inline void snp_set_page_private(unsigned long paddr) { }
static inline void snp_set_page_shared(unsigned long paddr) { }
140
static inline void sev_prep_identity_maps(unsigned long top_level_pgt) { }
141 142
#endif

143 144 145 146 147 148
/* acpi.c */
#ifdef CONFIG_ACPI
acpi_physical_address get_rsdp_addr(void);
#else
static inline acpi_physical_address get_rsdp_addr(void) { return 0; }
#endif
149

150
#if defined(CONFIG_RANDOMIZE_BASE) && defined(CONFIG_MEMORY_HOTREMOVE) && defined(CONFIG_ACPI)
151
extern struct mem_vector immovable_mem[MAX_NUMNODES*2];
152 153 154 155
int count_immovable_mem_regions(void);
#else
static inline int count_immovable_mem_regions(void) { return 0; }
#endif
156

157 158 159 160
/* ident_map_64.c */
#ifdef CONFIG_X86_5LEVEL
extern unsigned int __pgtable_l5_enabled, pgdir_shift, ptrs_per_p4d;
#endif
161
extern void kernel_add_identity_map(unsigned long start, unsigned long end);
162 163 164 165

/* Used by PAGE_KERN* macros: */
extern pteval_t __default_kernel_pte_mask;

166 167 168 169
/* idt_64.c */
extern gate_desc boot_idt[BOOT_IDT_ENTRIES];
extern struct desc_ptr boot_idt_desc;

170 171 172 173 174 175
#ifdef CONFIG_X86_64
void cleanup_exception_handling(void);
#else
static inline void cleanup_exception_handling(void) { }
#endif

176 177
/* IDT Entry Points */
void boot_page_fault(void);
178
void boot_stage1_vc(void);
179
void boot_stage2_vc(void);
180

181 182
unsigned long sev_verify_cbit(unsigned long cr3);

183 184 185 186 187 188 189 190 191
enum efi_type {
	EFI_TYPE_64,
	EFI_TYPE_32,
	EFI_TYPE_NONE,
};

#ifdef CONFIG_EFI
/* helpers for early EFI config table access */
enum efi_type efi_get_type(struct boot_params *bp);
192
unsigned long efi_get_system_table(struct boot_params *bp);
193 194
int efi_get_conf_table(struct boot_params *bp, unsigned long *cfg_tbl_pa,
		       unsigned int *cfg_tbl_len);
195 196 197 198
unsigned long efi_find_vendor_table(struct boot_params *bp,
				    unsigned long cfg_tbl_pa,
				    unsigned int cfg_tbl_len,
				    efi_guid_t guid);
199 200 201 202 203
#else
static inline enum efi_type efi_get_type(struct boot_params *bp)
{
	return EFI_TYPE_NONE;
}
204 205 206 207 208

static inline unsigned long efi_get_system_table(struct boot_params *bp)
{
	return 0;
}
209 210 211 212 213 214 215

static inline int efi_get_conf_table(struct boot_params *bp,
				     unsigned long *cfg_tbl_pa,
				     unsigned int *cfg_tbl_len)
{
	return -ENOENT;
}
216 217 218 219 220 221 222 223

static inline unsigned long efi_find_vendor_table(struct boot_params *bp,
						  unsigned long cfg_tbl_pa,
						  unsigned int cfg_tbl_len,
						  efi_guid_t guid)
{
	return 0;
}
224 225
#endif /* CONFIG_EFI */

226
#endif /* BOOT_COMPRESSED_MISC_H */