Yinghai Lu | 8fee13a4 | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 1 | #ifndef BOOT_COMPRESSED_MISC_H |
| 2 | #define BOOT_COMPRESSED_MISC_H |
| 3 | |
| 4 | /* |
| 5 | * we have to be careful, because no indirections are allowed here, and |
| 6 | * paravirt_ops is a kind of one. As it will only run in baremetal anyway, |
| 7 | * we just keep it from happening |
| 8 | */ |
| 9 | #undef CONFIG_PARAVIRT |
| 10 | #ifdef CONFIG_X86_32 |
| 11 | #define _ASM_X86_DESC_H 1 |
| 12 | #endif |
| 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 | 8fee13a4 | 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 | 8fee13a4 | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 25 | |
| 26 | /* misc.c */ |
| 27 | extern struct boot_params *real_mode; /* Pointer to real-mode data */ |
Joe Millenbach | 7aac301 | 2012-07-19 18:04:39 -0700 | [diff] [blame] | 28 | void __putstr(const char *s); |
| 29 | #define error_putstr(__x) __putstr(__x) |
| 30 | |
| 31 | #ifdef CONFIG_X86_VERBOSE_BOOTUP |
| 32 | |
| 33 | #define debug_putstr(__x) __putstr(__x) |
| 34 | |
| 35 | #else |
| 36 | |
| 37 | static inline void debug_putstr(const char *s) |
| 38 | { } |
| 39 | |
| 40 | #endif |
Yinghai Lu | 8fee13a4 | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 41 | |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 42 | #if CONFIG_EARLY_PRINTK || CONFIG_RANDOMIZE_BASE |
Yinghai Lu | 8fee13a4 | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 43 | /* cmdline.c */ |
| 44 | int cmdline_find_option(const char *option, char *buffer, int bufsize); |
| 45 | int cmdline_find_option_bool(const char *option); |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 46 | #endif |
Yinghai Lu | 8fee13a4 | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 47 | |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 48 | |
| 49 | #if CONFIG_RANDOMIZE_BASE |
| 50 | /* aslr.c */ |
| 51 | unsigned char *choose_kernel_location(unsigned char *input, |
| 52 | unsigned long input_size, |
| 53 | unsigned char *output, |
| 54 | unsigned long output_size); |
Kees Cook | 5bfce5e | 2013-10-10 17:18:15 -0700 | [diff] [blame^] | 55 | /* cpuflags.c */ |
| 56 | bool has_cpuflag(int flag); |
Kees Cook | 8ab3820 | 2013-10-10 17:18:14 -0700 | [diff] [blame] | 57 | #else |
| 58 | static inline |
| 59 | unsigned char *choose_kernel_location(unsigned char *input, |
| 60 | unsigned long input_size, |
| 61 | unsigned char *output, |
| 62 | unsigned long output_size) |
| 63 | { |
| 64 | return output; |
| 65 | } |
| 66 | #endif |
| 67 | |
| 68 | #ifdef CONFIG_EARLY_PRINTK |
Yinghai Lu | 8fee13a4 | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 69 | /* early_serial_console.c */ |
| 70 | extern int early_serial_base; |
| 71 | void console_init(void); |
Joe Millenbach | cec49df | 2012-07-19 18:04:41 -0700 | [diff] [blame] | 72 | #else |
Joe Millenbach | cec49df | 2012-07-19 18:04:41 -0700 | [diff] [blame] | 73 | static const int early_serial_base; |
| 74 | static inline void console_init(void) |
| 75 | { } |
Joe Millenbach | cec49df | 2012-07-19 18:04:41 -0700 | [diff] [blame] | 76 | #endif |
| 77 | |
Yinghai Lu | 8fee13a4 | 2010-08-02 16:21:22 -0700 | [diff] [blame] | 78 | #endif |