setup.h 2.8 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 46 47

void setup_bios_corruption_check(void);

#ifdef CONFIG_X86_VISWS
extern void visws_early_detect(void);
extern int is_visws_box(void);
#else
static inline void visws_early_detect(void) { }
static inline int is_visws_box(void) { return 0; }
#endif

extern unsigned long saved_video_mode;

48 49
extern void reserve_standard_io_resources(void);
extern void i386_reserve_resources(void);
50
extern void setup_default_timer_irq(void);
51

52 53
#ifndef _SETUP

T
Thomas Gleixner 已提交
54 55 56 57 58 59 60 61 62 63 64
/*
 * 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)

65 66 67 68
/* exceedingly early brk-like allocator */
extern unsigned long _brk_end;
void *extend_brk(size_t size, size_t align);

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

92 93
#ifdef __i386__

94
void __init i386_start_kernel(void);
95
extern void probe_roms(void);
96

97 98
#else
void __init x86_64_start_kernel(char *real_mode);
99 100
void __init x86_64_start_reservations(char *real_mode_data);

T
Thomas Gleixner 已提交
101
#endif /* __i386__ */
102
#endif /* _SETUP */
103 104 105
#else
#define RESERVE_BRK(name,sz)				\
	.pushsection .brk_reservation,"aw",@nobits;	\
106
.brk.name:						\
107
1:	.skip sz;					\
108
	.size .brk.name,.-1b;				\
109
	.popsection
T
Thomas Gleixner 已提交
110 111 112
#endif /* __ASSEMBLY__ */
#endif  /*  __KERNEL__  */

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