Yinghai Lu | 8fee13a | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 1 | #ifndef BOOT_COMPRESSED_MISC_H |
| 2 | #define BOOT_COMPRESSED_MISC_H |
| 3 | |
| 4 | /* |
Ingo Molnar | 927392d | 2012-11-23 19:19:07 +0100 | [diff] [blame] | 5 | * Special hack: we have to be careful, because no indirections are allowed here, |
| 6 | * and paravirt_ops is a kind of one. As it will only run in baremetal anyway, |
| 7 | * we just keep it from happening. (This list needs to be extended when new |
| 8 | * paravirt and debugging variants are added.) |
Yinghai Lu | 8fee13a | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 9 | */ |
| 10 | #undef CONFIG_PARAVIRT |
Ingo Molnar | 927392d | 2012-11-23 19:19:07 +0100 | [diff] [blame] | 11 | #undef CONFIG_PARAVIRT_SPINLOCKS |
Andrey Ryabinin | 393f203 | 2015-02-13 14:39:56 -0800 | [diff] [blame] | 12 | #undef CONFIG_KASAN |
Yinghai Lu | 8fee13a | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 13 | |
| 14 | #include <linux/linkage.h> |
| 15 | #include <linux/screen_info.h> |
| 16 | #include <linux/elf.h> |
| 17 | #include <linux/io.h> |
| 18 | #include <asm/page.h> |
| 19 | #include <asm/boot.h> |
| 20 | #include <asm/bootparam.h> |
H. Peter Anvin | 5dcd14e | 2013-01-29 01:05:24 -0800 | [diff] [blame] | 21 | #include <asm/bootparam_utils.h> |
Yinghai Lu | 8fee13a | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 22 | |
| 23 | #define BOOT_BOOT_H |
H. Peter Anvin | 6238b47 | 2010-08-02 21:03:46 -0700 | [diff] [blame] | 24 | #include "../ctype.h" |
Yinghai Lu | 8fee13a | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 25 | |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 26 | #ifdef CONFIG_X86_64 |
| 27 | #define memptr long |
| 28 | #else |
| 29 | #define memptr unsigned |
| 30 | #endif |
| 31 | |
Yinghai Lu | 8fee13a | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 32 | /* misc.c */ |
Kees Cook | 82fa963 | 2013-10-10 17:18:16 -0700 | [diff] [blame] | 33 | extern memptr free_mem_ptr; |
| 34 | extern memptr free_mem_end_ptr; |
Yinghai Lu | 8fee13a | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 35 | extern struct boot_params *real_mode; /* Pointer to real-mode data */ |
Joe Millenbach | 7aac301 | 2012-07-19 18:04:39 -0700 | [diff] [blame] | 36 | void __putstr(const char *s); |
| 37 | #define error_putstr(__x) __putstr(__x) |
| 38 | |
| 39 | #ifdef CONFIG_X86_VERBOSE_BOOTUP |
| 40 | |
| 41 | #define debug_putstr(__x) __putstr(__x) |
| 42 | |
| 43 | #else |
| 44 | |
| 45 | static inline void debug_putstr(const char *s) |
| 46 | { } |
| 47 | |
| 48 | #endif |
Yinghai Lu | 8fee13a | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 49 | |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 50 | #if CONFIG_EARLY_PRINTK || CONFIG_RANDOMIZE_BASE |
Yinghai Lu | 8fee13a | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 51 | /* cmdline.c */ |
| 52 | int cmdline_find_option(const char *option, char *buffer, int bufsize); |
| 53 | int cmdline_find_option_bool(const char *option); |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 54 | #endif |
Yinghai Lu | 8fee13a | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 55 | |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 56 | |
| 57 | #if CONFIG_RANDOMIZE_BASE |
| 58 | /* aslr.c */ |
Borislav Petkov | 78cac48 | 2015-04-01 12:49:52 +0200 | [diff] [blame] | 59 | unsigned char *choose_kernel_location(struct boot_params *boot_params, |
| 60 | unsigned char *input, |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 61 | unsigned long input_size, |
| 62 | unsigned char *output, |
| 63 | unsigned long output_size); |
Kees Cook | 5bfce5e | 2013-10-10 17:18:15 -0700 | [diff] [blame] | 64 | /* cpuflags.c */ |
| 65 | bool has_cpuflag(int flag); |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 66 | #else |
| 67 | static inline |
Borislav Petkov | 78cac48 | 2015-04-01 12:49:52 +0200 | [diff] [blame] | 68 | unsigned char *choose_kernel_location(struct boot_params *boot_params, |
| 69 | unsigned char *input, |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 70 | unsigned long input_size, |
| 71 | unsigned char *output, |
| 72 | unsigned long output_size) |
| 73 | { |
| 74 | return output; |
| 75 | } |
| 76 | #endif |
| 77 | |
| 78 | #ifdef CONFIG_EARLY_PRINTK |
Yinghai Lu | 8fee13a | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 79 | /* early_serial_console.c */ |
| 80 | extern int early_serial_base; |
| 81 | void console_init(void); |
Joe Millenbach | cec49df | 2012-07-19 18:04:41 -0700 | [diff] [blame] | 82 | #else |
Joe Millenbach | cec49df | 2012-07-19 18:04:41 -0700 | [diff] [blame] | 83 | static const int early_serial_base; |
| 84 | static inline void console_init(void) |
| 85 | { } |
Joe Millenbach | cec49df | 2012-07-19 18:04:41 -0700 | [diff] [blame] | 86 | #endif |
| 87 | |
Yinghai Lu | 8fee13a | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 88 | #endif |