blob: 9077af7fd0b8573e203993b62f10cb8f2551fb54 [file] [log] [blame]
Yinghai Lu8fee13a42010-08-02 16:21:22 -07001#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 Anvin5dcd14e2013-01-29 01:05:24 -080021#include <asm/bootparam_utils.h>
Yinghai Lu8fee13a42010-08-02 16:21:22 -070022
23#define BOOT_BOOT_H
H. Peter Anvin6238b472010-08-02 21:03:46 -070024#include "../ctype.h"
Yinghai Lu8fee13a42010-08-02 16:21:22 -070025
26/* misc.c */
27extern struct boot_params *real_mode; /* Pointer to real-mode data */
Joe Millenbach7aac3012012-07-19 18:04:39 -070028void __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
37static inline void debug_putstr(const char *s)
38{ }
39
40#endif
Yinghai Lu8fee13a42010-08-02 16:21:22 -070041
Kees Cook8ab38202013-10-10 17:18:14 -070042#if CONFIG_EARLY_PRINTK || CONFIG_RANDOMIZE_BASE
Yinghai Lu8fee13a42010-08-02 16:21:22 -070043/* cmdline.c */
44int cmdline_find_option(const char *option, char *buffer, int bufsize);
45int cmdline_find_option_bool(const char *option);
Kees Cook8ab38202013-10-10 17:18:14 -070046#endif
Yinghai Lu8fee13a42010-08-02 16:21:22 -070047
Kees Cook8ab38202013-10-10 17:18:14 -070048
49#if CONFIG_RANDOMIZE_BASE
50/* aslr.c */
51unsigned char *choose_kernel_location(unsigned char *input,
52 unsigned long input_size,
53 unsigned char *output,
54 unsigned long output_size);
55#else
56static inline
57unsigned char *choose_kernel_location(unsigned char *input,
58 unsigned long input_size,
59 unsigned char *output,
60 unsigned long output_size)
61{
62 return output;
63}
64#endif
65
66#ifdef CONFIG_EARLY_PRINTK
Yinghai Lu8fee13a42010-08-02 16:21:22 -070067/* early_serial_console.c */
68extern int early_serial_base;
69void console_init(void);
Joe Millenbachcec49df2012-07-19 18:04:41 -070070#else
Joe Millenbachcec49df2012-07-19 18:04:41 -070071static const int early_serial_base;
72static inline void console_init(void)
73{ }
Joe Millenbachcec49df2012-07-19 18:04:41 -070074#endif
75
Yinghai Lu8fee13a42010-08-02 16:21:22 -070076#endif