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

C
Cyrill Gorcunov 已提交
4 5
#ifdef __KERNEL__

T
Thomas Gleixner 已提交
6 7 8 9 10 11 12 13 14 15 16
#define COMMAND_LINE_SIZE 2048

#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)

17 18 19
#endif /* __i386__ */

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

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

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

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

void setup_bios_corruption_check(void);

#ifdef CONFIG_X86_VISWS
extern void visws_early_detect(void);
#else
static inline void visws_early_detect(void) { }
#endif

extern unsigned long saved_video_mode;

46 47
extern void reserve_standard_io_resources(void);
extern void i386_reserve_resources(void);
48
extern void setup_default_timer_irq(void);
49

50 51 52 53 54 55
#ifdef CONFIG_X86_MRST
extern void x86_mrst_early_setup(void);
#else
static inline void x86_mrst_early_setup(void) { }
#endif

56 57
#ifndef _SETUP

T
Thomas Gleixner 已提交
58 59 60 61 62 63 64 65 66 67 68
/*
 * 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)

69 70 71 72
/* exceedingly early brk-like allocator */
extern unsigned long _brk_end;
void *extend_brk(size_t size, size_t align);

73 74 75 76 77 78 79 80 81 82 83 84
/*
 * 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)						\
85
	static void __section(.discard.text) __used			\
86 87 88
	__brk_reservation_fn_##name##__(void) {				\
		asm volatile (						\
			".pushsection .brk_reservation,\"aw\",@nobits;" \
89
			".brk." #name ":"				\
90
			" 1:.skip %c0;"					\
91
			" .size .brk." #name ", . - 1b;"		\
92 93 94 95
			" .popsection"					\
			: : "i" (sz));					\
	}

96 97 98 99 100
/* Helper for reserving space for arrays of things */
#define RESERVE_BRK_ARRAY(type, name, entries)		\
	type *name;					\
	RESERVE_BRK(name, sizeof(type) * entries)

101 102
#ifdef __i386__

103
void __init i386_start_kernel(void);
104
extern void probe_roms(void);
105

106 107
#else
void __init x86_64_start_kernel(char *real_mode);
108 109
void __init x86_64_start_reservations(char *real_mode_data);

T
Thomas Gleixner 已提交
110
#endif /* __i386__ */
111
#endif /* _SETUP */
112 113 114
#else
#define RESERVE_BRK(name,sz)				\
	.pushsection .brk_reservation,"aw",@nobits;	\
115
.brk.name:						\
116
1:	.skip sz;					\
117
	.size .brk.name,.-1b;				\
118
	.popsection
T
Thomas Gleixner 已提交
119 120 121
#endif /* __ASSEMBLY__ */
#endif  /*  __KERNEL__  */

H
H. Peter Anvin 已提交
122
#endif /* _ASM_X86_SETUP_H */