]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/boot/compressed/misc.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / boot / compressed / misc.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
8fee13a4
YL
2#ifndef BOOT_COMPRESSED_MISC_H
3#define BOOT_COMPRESSED_MISC_H
4
5/*
927392d7
IM
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.)
8fee13a4
YL
10 */
11#undef CONFIG_PARAVIRT
927392d7 12#undef CONFIG_PARAVIRT_SPINLOCKS
393f203f 13#undef CONFIG_KASAN
8fee13a4
YL
14
15#include <linux/linkage.h>
16#include <linux/screen_info.h>
17#include <linux/elf.h>
18#include <linux/io.h>
19#include <asm/page.h>
20#include <asm/boot.h>
21#include <asm/bootparam.h>
5dcd14ec 22#include <asm/bootparam_utils.h>
8fee13a4
YL
23
24#define BOOT_BOOT_H
6238b47b 25#include "../ctype.h"
8fee13a4 26
82fa9637
KC
27#ifdef CONFIG_X86_64
28#define memptr long
29#else
30#define memptr unsigned
31#endif
32
8fee13a4 33/* misc.c */
82fa9637
KC
34extern memptr free_mem_ptr;
35extern memptr free_mem_end_ptr;
6655e0aa 36extern struct boot_params *boot_params;
7aac3015 37void __putstr(const char *s);
79063a7c 38void __puthex(unsigned long value);
7aac3015 39#define error_putstr(__x) __putstr(__x)
79063a7c 40#define error_puthex(__x) __puthex(__x)
7aac3015
JM
41
42#ifdef CONFIG_X86_VERBOSE_BOOTUP
43
44#define debug_putstr(__x) __putstr(__x)
79063a7c
KC
45#define debug_puthex(__x) __puthex(__x)
46#define debug_putaddr(__x) { \
47 debug_putstr(#__x ": 0x"); \
48 debug_puthex((unsigned long)(__x)); \
49 debug_putstr("\n"); \
50 }
7aac3015
JM
51
52#else
53
54static inline void debug_putstr(const char *s)
55{ }
79063a7c
KC
56static inline void debug_puthex(const char *s)
57{ }
58#define debug_putaddr(x) /* */
7aac3015
JM
59
60#endif
8fee13a4 61
8ab3820f 62#if CONFIG_EARLY_PRINTK || CONFIG_RANDOMIZE_BASE
8fee13a4
YL
63/* cmdline.c */
64int cmdline_find_option(const char *option, char *buffer, int bufsize);
65int cmdline_find_option_bool(const char *option);
8ab3820f 66#endif
8fee13a4 67
8fee13a4 68
8ab3820f 69#if CONFIG_RANDOMIZE_BASE
9b238748 70/* kaslr.c */
8391c73c
BH
71void choose_random_location(unsigned long input,
72 unsigned long input_size,
73 unsigned long *output,
74 unsigned long output_size,
75 unsigned long *virt_addr);
5bfce5ef
KC
76/* cpuflags.c */
77bool has_cpuflag(int flag);
cec49df9 78#else
8391c73c
BH
79static inline void choose_random_location(unsigned long input,
80 unsigned long input_size,
81 unsigned long *output,
82 unsigned long output_size,
83 unsigned long *virt_addr)
8ab3820f 84{
8ab3820f
KC
85}
86#endif
cec49df9 87
3a94707d 88#ifdef CONFIG_X86_64
11fdf97a 89void initialize_identity_maps(void);
3a94707d
KC
90void add_identity_map(unsigned long start, unsigned long size);
91void finalize_identity_maps(void);
92extern unsigned char _pgtable[];
93#else
11fdf97a
KC
94static inline void initialize_identity_maps(void)
95{ }
3a94707d
KC
96static inline void add_identity_map(unsigned long start, unsigned long size)
97{ }
98static inline void finalize_identity_maps(void)
99{ }
100#endif
101
8ab3820f 102#ifdef CONFIG_EARLY_PRINTK
bd448d4d 103/* early_serial_console.c */
8ab3820f
KC
104extern int early_serial_base;
105void console_init(void);
106#else
cec49df9
JM
107static const int early_serial_base;
108static inline void console_init(void)
109{ }
cec49df9
JM
110#endif
111
8fee13a4 112#endif