1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef BOOT_COMPRESSED_MISC_H
3 #define BOOT_COMPRESSED_MISC_H
6 * Special hack: we have to be careful, because no indirections are allowed here,
7 * and paravirt_ops is a kind of one. As it will only run in baremetal anyway,
8 * we just keep it from happening. (This list needs to be extended when new
9 * paravirt and debugging variants are added.)
11 #undef CONFIG_PARAVIRT
12 #undef CONFIG_PARAVIRT_XXL
13 #undef CONFIG_PARAVIRT_SPINLOCKS
15 #undef CONFIG_KASAN_GENERIC
19 /* cpu_feature_enabled() cannot be used this early */
20 #define USE_EARLY_PGTABLE_L5
22 #include <linux/linkage.h>
23 #include <linux/screen_info.h>
24 #include <linux/elf.h>
27 #include <asm/bootparam.h>
28 #include <asm/desc_defs.h>
33 #include <linux/acpi.h>
42 #define memptr unsigned
45 /* boot/compressed/vmlinux start and end markers */
46 extern char _head[], _end[];
49 extern memptr free_mem_ptr;
50 extern memptr free_mem_end_ptr;
51 void *malloc(int size);
52 void free(void *where);
53 extern struct boot_params *boot_params;
54 void __putstr(const char *s);
55 void __puthex(unsigned long value);
56 #define error_putstr(__x) __putstr(__x)
57 #define error_puthex(__x) __puthex(__x)
59 #ifdef CONFIG_X86_VERBOSE_BOOTUP
61 #define debug_putstr(__x) __putstr(__x)
62 #define debug_puthex(__x) __puthex(__x)
63 #define debug_putaddr(__x) { \
64 debug_putstr(#__x ": 0x"); \
65 debug_puthex((unsigned long)(__x)); \
71 static inline void debug_putstr(const char *s)
73 static inline void debug_puthex(unsigned long value)
75 #define debug_putaddr(x) /* */
80 int cmdline_find_option(const char *option, char *buffer, int bufsize);
81 int cmdline_find_option_bool(const char *option);
88 #ifdef CONFIG_RANDOMIZE_BASE
90 void choose_random_location(unsigned long input,
91 unsigned long input_size,
92 unsigned long *output,
93 unsigned long output_size,
94 unsigned long *virt_addr);
96 static inline void choose_random_location(unsigned long input,
97 unsigned long input_size,
98 unsigned long *output,
99 unsigned long output_size,
100 unsigned long *virt_addr)
106 bool has_cpuflag(int flag);
109 extern int set_page_decrypted(unsigned long address);
110 extern int set_page_encrypted(unsigned long address);
111 extern int set_page_non_present(unsigned long address);
112 extern unsigned char _pgtable[];
115 #ifdef CONFIG_EARLY_PRINTK
116 /* early_serial_console.c */
117 extern int early_serial_base;
118 void console_init(void);
120 static const int early_serial_base;
121 static inline void console_init(void)
125 void set_sev_encryption_mask(void);
127 #ifdef CONFIG_AMD_MEM_ENCRYPT
128 void sev_es_shutdown_ghcb(void);
129 extern bool sev_es_check_ghcb_fault(unsigned long address);
131 static inline void sev_es_shutdown_ghcb(void) { }
132 static inline bool sev_es_check_ghcb_fault(unsigned long address)
140 acpi_physical_address get_rsdp_addr(void);
142 static inline acpi_physical_address get_rsdp_addr(void) { return 0; }
145 #if defined(CONFIG_RANDOMIZE_BASE) && defined(CONFIG_MEMORY_HOTREMOVE) && defined(CONFIG_ACPI)
146 extern struct mem_vector immovable_mem[MAX_NUMNODES*2];
147 int count_immovable_mem_regions(void);
149 static inline int count_immovable_mem_regions(void) { return 0; }
153 #ifdef CONFIG_X86_5LEVEL
154 extern unsigned int __pgtable_l5_enabled, pgdir_shift, ptrs_per_p4d;
157 /* Used by PAGE_KERN* macros: */
158 extern pteval_t __default_kernel_pte_mask;
161 extern gate_desc boot_idt[BOOT_IDT_ENTRIES];
162 extern struct desc_ptr boot_idt_desc;
165 void cleanup_exception_handling(void);
167 static inline void cleanup_exception_handling(void) { }
170 /* IDT Entry Points */
171 void boot_page_fault(void);
172 void boot_stage1_vc(void);
173 void boot_stage2_vc(void);
175 unsigned long sev_verify_cbit(unsigned long cr3);
177 #endif /* BOOT_COMPRESSED_MISC_H */