setup.h 3.2 KB
Newer Older
H
H. Peter Anvin 已提交
1 2
#ifndef _ASM_X86_SETUP_H
#define _ASM_X86_SETUP_H
T
Thomas Gleixner 已提交
3

4 5
#include <uapi/asm/setup.h>

T
Thomas Gleixner 已提交
6 7
#define COMMAND_LINE_SIZE 2048

8 9
#include <linux/linkage.h>

T
Thomas Gleixner 已提交
10 11 12 13 14 15 16 17 18
#ifdef __i386__

#include <linux/pfn.h>
/*
 * Reserved space for vmalloc and iomap - defined in asm/page.h
 */
#define MAXMEM_PFN	PFN_DOWN(MAXMEM)
#define MAX_NONPAE_PFN	(1 << 20)

19 20 21
#endif /* __i386__ */

#define PARAM_SIZE 4096		/* sizeof(struct boot_params) */
T
Thomas Gleixner 已提交
22 23

#define OLD_CL_MAGIC		0xA33F
24
#define OLD_CL_ADDRESS		0x020	/* Relative to real mode data */
T
Thomas Gleixner 已提交
25 26 27 28
#define NEW_CL_POINTER		0x228	/* Relative to real mode data */

#ifndef __ASSEMBLY__
#include <asm/bootparam.h>
29
#include <asm/x86_init.h>
T
Thomas Gleixner 已提交
30

31 32
extern u64 relocated_ramdisk;

33
/* Interrupt control for vSMPowered x86_64 systems */
34
#ifdef CONFIG_X86_64
35
void vsmp_init(void);
36 37 38
#else
static inline void vsmp_init(void) { }
#endif
39 40 41 42 43

void setup_bios_corruption_check(void);

extern unsigned long saved_video_mode;

44 45
extern void reserve_standard_io_resources(void);
extern void i386_reserve_resources(void);
46
extern void setup_default_timer_irq(void);
47

48
#ifdef CONFIG_X86_INTEL_MID
49
extern void x86_intel_mid_early_setup(void);
50
#else
51
static inline void x86_intel_mid_early_setup(void) { }
52 53
#endif

T
Thomas Gleixner 已提交
54 55 56 57 58 59
#ifdef CONFIG_X86_INTEL_CE
extern void x86_ce4100_early_setup(void);
#else
static inline void x86_ce4100_early_setup(void) { }
#endif

60 61 62
extern void init_espfix_bsp(void);
extern void init_espfix_ap(void);

63 64
#ifndef _SETUP

T
Thomas Gleixner 已提交
65 66 67 68 69 70 71 72 73 74 75
/*
 * This is set up by the setup-routine at boot-time
 */
extern struct boot_params boot_params;

/*
 * Do NOT EVER look at the BIOS memory size location.
 * It does not work on many machines.
 */
#define LOWMEMSIZE()	(0x9f000)

76 77 78 79
/* exceedingly early brk-like allocator */
extern unsigned long _brk_end;
void *extend_brk(size_t size, size_t align);

80 81 82 83 84 85 86 87 88 89 90 91
/*
 * Reserve space in the brk section.  The name must be unique within
 * the file, and somewhat descriptive.  The size is in bytes.  Must be
 * used at file scope.
 *
 * (This uses a temp function to wrap the asm so we can pass it the
 * size parameter; otherwise we wouldn't be able to.  We can't use a
 * "section" attribute on a normal variable because it always ends up
 * being @progbits, which ends up allocating space in the vmlinux
 * executable.)
 */
#define RESERVE_BRK(name,sz)						\
92
	static void __section(.discard.text) __used notrace		\
93 94 95
	__brk_reservation_fn_##name##__(void) {				\
		asm volatile (						\
			".pushsection .brk_reservation,\"aw\",@nobits;" \
96
			".brk." #name ":"				\
97
			" 1:.skip %c0;"					\
98
			" .size .brk." #name ", . - 1b;"		\
99 100 101 102
			" .popsection"					\
			: : "i" (sz));					\
	}

103 104 105 106 107
/* Helper for reserving space for arrays of things */
#define RESERVE_BRK_ARRAY(type, name, entries)		\
	type *name;					\
	RESERVE_BRK(name, sizeof(type) * entries)

D
Dan Williams 已提交
108
extern void probe_roms(void);
109 110
#ifdef __i386__

111
asmlinkage void __init i386_start_kernel(void);
112

113
#else
114 115
asmlinkage void __init x86_64_start_kernel(char *real_mode);
asmlinkage void __init x86_64_start_reservations(char *real_mode_data);
116

T
Thomas Gleixner 已提交
117
#endif /* __i386__ */
118
#endif /* _SETUP */
119 120 121
#else
#define RESERVE_BRK(name,sz)				\
	.pushsection .brk_reservation,"aw",@nobits;	\
122
.brk.name:						\
123
1:	.skip sz;					\
124
	.size .brk.name,.-1b;				\
125
	.popsection
T
Thomas Gleixner 已提交
126
#endif /* __ASSEMBLY__ */
H
H. Peter Anvin 已提交
127
#endif /* _ASM_X86_SETUP_H */