GNU Linux-libre 4.14.332-gnu1
[releases.git] / arch / x86 / include / asm / setup.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_X86_SETUP_H
3 #define _ASM_X86_SETUP_H
4
5 #include <uapi/asm/setup.h>
6
7 #define COMMAND_LINE_SIZE 2048
8
9 #include <linux/linkage.h>
10 #include <asm/page_types.h>
11
12 #ifdef __i386__
13
14 #include <linux/pfn.h>
15 /*
16  * Reserved space for vmalloc and iomap - defined in asm/page.h
17  */
18 #define MAXMEM_PFN      PFN_DOWN(MAXMEM)
19 #define MAX_NONPAE_PFN  (1 << 20)
20
21 #endif /* __i386__ */
22
23 #define PARAM_SIZE 4096         /* sizeof(struct boot_params) */
24
25 #define OLD_CL_MAGIC            0xA33F
26 #define OLD_CL_ADDRESS          0x020   /* Relative to real mode data */
27 #define NEW_CL_POINTER          0x228   /* Relative to real mode data */
28
29 #ifndef __ASSEMBLY__
30 #include <asm/bootparam.h>
31 #include <asm/x86_init.h>
32
33 extern u64 relocated_ramdisk;
34
35 /* Interrupt control for vSMPowered x86_64 systems */
36 #ifdef CONFIG_X86_64
37 void vsmp_init(void);
38 #else
39 static inline void vsmp_init(void) { }
40 #endif
41
42 void setup_bios_corruption_check(void);
43 void early_platform_quirks(void);
44
45 extern unsigned long saved_video_mode;
46
47 extern void reserve_standard_io_resources(void);
48 extern void i386_reserve_resources(void);
49
50 #ifdef CONFIG_X86_INTEL_MID
51 extern void x86_intel_mid_early_setup(void);
52 #else
53 static inline void x86_intel_mid_early_setup(void) { }
54 #endif
55
56 #ifdef CONFIG_X86_INTEL_CE
57 extern void x86_ce4100_early_setup(void);
58 #else
59 static inline void x86_ce4100_early_setup(void) { }
60 #endif
61
62 #ifndef _SETUP
63
64 #include <asm/espfix.h>
65 #include <linux/kernel.h>
66
67 /*
68  * This is set up by the setup-routine at boot-time
69  */
70 extern struct boot_params boot_params;
71 extern char _text[];
72
73 static inline bool kaslr_enabled(void)
74 {
75         return !!(boot_params.hdr.loadflags & KASLR_FLAG);
76 }
77
78 static inline unsigned long kaslr_offset(void)
79 {
80         return (unsigned long)&_text - __START_KERNEL;
81 }
82
83 /*
84  * Do NOT EVER look at the BIOS memory size location.
85  * It does not work on many machines.
86  */
87 #define LOWMEMSIZE()    (0x9f000)
88
89 /* exceedingly early brk-like allocator */
90 extern unsigned long _brk_end;
91 void *extend_brk(size_t size, size_t align);
92
93 /*
94  * Reserve space in the .brk section, which is a block of memory from which the
95  * caller is allowed to allocate very early (before even memblock is available)
96  * by calling extend_brk().  All allocated memory will be eventually converted
97  * to memblock.  Any leftover unallocated memory will be freed.
98  *
99  * The size is in bytes.
100  */
101 #define RESERVE_BRK(name, size)                                 \
102         __section(.bss..brk) __aligned(1) __used        \
103         static char __brk_##name[size]
104
105 /* Helper for reserving space for arrays of things */
106 #define RESERVE_BRK_ARRAY(type, name, entries)          \
107         type *name;                                     \
108         RESERVE_BRK(name, sizeof(type) * entries)
109
110 extern void probe_roms(void);
111 #ifdef __i386__
112
113 asmlinkage void __init i386_start_kernel(void);
114
115 #else
116 asmlinkage void __init x86_64_start_kernel(char *real_mode);
117 asmlinkage void __init x86_64_start_reservations(char *real_mode_data);
118
119 #endif /* __i386__ */
120 #endif /* _SETUP */
121
122 #else  /* __ASSEMBLY */
123
124 .macro __RESERVE_BRK name, size
125         .pushsection .bss..brk, "aw"
126 GLOBAL(__brk_\name)
127         .skip \size
128 END(__brk_\name)
129         .popsection
130 .endm
131
132 #define RESERVE_BRK(name, size) __RESERVE_BRK name, size
133
134 #endif /* __ASSEMBLY__ */
135
136 #endif /* _ASM_X86_SETUP_H */