]> Git Repo - J-linux.git/blob - arch/x86/boot/compressed/misc.h
x86/tdx: Fix RETs in TDX asm
[J-linux.git] / arch / x86 / boot / compressed / misc.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef BOOT_COMPRESSED_MISC_H
3 #define BOOT_COMPRESSED_MISC_H
4
5 /*
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.)
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 #define __NO_FORTIFY
18
19 /* cpu_feature_enabled() cannot be used this early */
20 #define USE_EARLY_PGTABLE_L5
21
22 #include <linux/linkage.h>
23 #include <linux/screen_info.h>
24 #include <linux/elf.h>
25 #include <asm/page.h>
26 #include <asm/boot.h>
27 #include <asm/bootparam.h>
28 #include <asm/desc_defs.h>
29
30 #include "tdx.h"
31
32 #define BOOT_CTYPE_H
33 #include <linux/acpi.h>
34
35 #define BOOT_BOOT_H
36 #include "../ctype.h"
37 #include "../io.h"
38
39 #ifdef CONFIG_X86_64
40 #define memptr long
41 #else
42 #define memptr unsigned
43 #endif
44
45 /* boot/compressed/vmlinux start and end markers */
46 extern char _head[], _end[];
47
48 /* misc.c */
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)
58
59 #ifdef CONFIG_X86_VERBOSE_BOOTUP
60
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)); \
66                 debug_putstr("\n"); \
67         }
68
69 #else
70
71 static inline void debug_putstr(const char *s)
72 { }
73 static inline void debug_puthex(unsigned long value)
74 { }
75 #define debug_putaddr(x) /* */
76
77 #endif
78
79 /* cmdline.c */
80 int cmdline_find_option(const char *option, char *buffer, int bufsize);
81 int cmdline_find_option_bool(const char *option);
82
83 struct mem_vector {
84         u64 start;
85         u64 size;
86 };
87
88 #ifdef CONFIG_RANDOMIZE_BASE
89 /* kaslr.c */
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);
95 #else
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)
101 {
102 }
103 #endif
104
105 /* cpuflags.c */
106 bool has_cpuflag(int flag);
107
108 #ifdef CONFIG_X86_64
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[];
113 #endif
114
115 #ifdef CONFIG_EARLY_PRINTK
116 /* early_serial_console.c */
117 extern int early_serial_base;
118 void console_init(void);
119 #else
120 static const int early_serial_base;
121 static inline void console_init(void)
122 { }
123 #endif
124
125 void set_sev_encryption_mask(void);
126
127 #ifdef CONFIG_AMD_MEM_ENCRYPT
128 void sev_es_shutdown_ghcb(void);
129 extern bool sev_es_check_ghcb_fault(unsigned long address);
130 #else
131 static inline void sev_es_shutdown_ghcb(void) { }
132 static inline bool sev_es_check_ghcb_fault(unsigned long address)
133 {
134         return false;
135 }
136 #endif
137
138 /* acpi.c */
139 #ifdef CONFIG_ACPI
140 acpi_physical_address get_rsdp_addr(void);
141 #else
142 static inline acpi_physical_address get_rsdp_addr(void) { return 0; }
143 #endif
144
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);
148 #else
149 static inline int count_immovable_mem_regions(void) { return 0; }
150 #endif
151
152 /* ident_map_64.c */
153 #ifdef CONFIG_X86_5LEVEL
154 extern unsigned int __pgtable_l5_enabled, pgdir_shift, ptrs_per_p4d;
155 #endif
156
157 /* Used by PAGE_KERN* macros: */
158 extern pteval_t __default_kernel_pte_mask;
159
160 /* idt_64.c */
161 extern gate_desc boot_idt[BOOT_IDT_ENTRIES];
162 extern struct desc_ptr boot_idt_desc;
163
164 #ifdef CONFIG_X86_64
165 void cleanup_exception_handling(void);
166 #else
167 static inline void cleanup_exception_handling(void) { }
168 #endif
169
170 /* IDT Entry Points */
171 void boot_page_fault(void);
172 void boot_stage1_vc(void);
173 void boot_stage2_vc(void);
174
175 unsigned long sev_verify_cbit(unsigned long cr3);
176
177 #endif /* BOOT_COMPRESSED_MISC_H */
This page took 0.039351 seconds and 4 git commands to generate.