Merge branch 'linus' into x86/apic
[linux-2.6-block.git] / arch / x86 / include / asm / setup.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_SETUP_H
2#define _ASM_X86_SETUP_H
ef685298 3
dbca1df4
CG
4#ifdef __KERNEL__
5
ef685298
TG
6#define COMMAND_LINE_SIZE 2048
7
746ef0cd 8#ifndef __ASSEMBLY__
2785c8d0 9
3b33553b
IM
10/*
11 * Any setup quirks to be performed?
12 */
f4f21b71 13struct mpc_cpu;
00fb8606 14struct mpc_bus;
b0e239ff 15struct mpc_oemtable;
8e6dafd6 16
3c9cb6de 17struct x86_quirks {
63b5d7af 18 int (*arch_pre_time_init)(void);
3c9cb6de
YL
19 int (*arch_time_init)(void);
20 int (*arch_pre_intr_init)(void);
21 int (*arch_intr_init)(void);
22 int (*arch_trap_init)(void);
23 char * (*arch_memory_setup)(void);
24 int (*mach_get_smp_config)(unsigned int early);
25 int (*mach_find_smp_config)(unsigned int reserve);
64898a8b
YL
26
27 int *mpc_record;
f4f21b71 28 int (*mpc_apic_id)(struct mpc_cpu *m);
00fb8606
JSR
29 void (*mpc_oem_bus_info)(struct mpc_bus *m, char *name);
30 void (*mpc_oem_pci_bus)(struct mpc_bus *m);
b0e239ff 31 void (*smp_read_mpc_oem)(struct mpc_oemtable *oemtable,
dbca1df4 32 unsigned short oemsize);
a4dbc34d 33 int (*setup_ioapic_ids)(void);
3c9cb6de
YL
34};
35
8e6dafd6
IM
36extern void x86_quirk_intr_init(void);
37
38extern void x86_quirk_trap_init(void);
39
40extern void x86_quirk_pre_time_init(void);
41extern void x86_quirk_time_init(void);
42
746ef0cd
GOC
43#endif /* __ASSEMBLY__ */
44
ef685298
TG
45#ifdef __i386__
46
47#include <linux/pfn.h>
48/*
49 * Reserved space for vmalloc and iomap - defined in asm/page.h
50 */
51#define MAXMEM_PFN PFN_DOWN(MAXMEM)
52#define MAX_NONPAE_PFN (1 << 20)
53
fa76dab9
PA
54#endif /* __i386__ */
55
56#define PARAM_SIZE 4096 /* sizeof(struct boot_params) */
ef685298 57
ef685298 58#define OLD_CL_MAGIC 0xA33F
fa76dab9 59#define OLD_CL_ADDRESS 0x020 /* Relative to real mode data */
ef685298
TG
60#define NEW_CL_POINTER 0x228 /* Relative to real mode data */
61
ef685298
TG
62#ifndef __ASSEMBLY__
63#include <asm/bootparam.h>
64
15c55443 65/* Interrupt control for vSMPowered x86_64 systems */
70511134 66#ifdef CONFIG_X86_64
15c55443 67void vsmp_init(void);
129d8bc8
YL
68#else
69static inline void vsmp_init(void) { }
70#endif
15c55443
JSR
71
72void setup_bios_corruption_check(void);
73
74#ifdef CONFIG_X86_VISWS
75extern void visws_early_detect(void);
76extern int is_visws_box(void);
77#else
78static inline void visws_early_detect(void) { }
79static inline int is_visws_box(void) { return 0; }
80#endif
81
15c55443
JSR
82extern struct x86_quirks *x86_quirks;
83extern unsigned long saved_video_mode;
84
85#ifndef CONFIG_PARAVIRT
86#define paravirt_post_allocator_init() do {} while (0)
87#endif
88
fa76dab9
PA
89#ifndef _SETUP
90
ef685298
TG
91/*
92 * This is set up by the setup-routine at boot-time
93 */
94extern struct boot_params boot_params;
95
ef685298
TG
96/*
97 * Do NOT EVER look at the BIOS memory size location.
98 * It does not work on many machines.
99 */
100#define LOWMEMSIZE() (0x9f000)
101
93dbda7c
JF
102/* exceedingly early brk-like allocator */
103extern unsigned long _brk_end;
104void *extend_brk(size_t size, size_t align);
105
796216a5
JF
106/*
107 * Reserve space in the brk section. The name must be unique within
108 * the file, and somewhat descriptive. The size is in bytes. Must be
109 * used at file scope.
110 *
111 * (This uses a temp function to wrap the asm so we can pass it the
112 * size parameter; otherwise we wouldn't be able to. We can't use a
113 * "section" attribute on a normal variable because it always ends up
114 * being @progbits, which ends up allocating space in the vmlinux
115 * executable.)
116 */
117#define RESERVE_BRK(name,sz) \
0b1c723d 118 static void __section(.discard) __used \
796216a5
JF
119 __brk_reservation_fn_##name##__(void) { \
120 asm volatile ( \
121 ".pushsection .brk_reservation,\"aw\",@nobits;" \
0b1c723d 122 ".brk." #name ":" \
796216a5 123 " 1:.skip %c0;" \
0b1c723d 124 " .size .brk." #name ", . - 1b;" \
796216a5
JF
125 " .popsection" \
126 : : "i" (sz)); \
127 }
128
95a71a45
YL
129#ifdef __i386__
130
f0d43100 131void __init i386_start_kernel(void);
a9c1182f 132extern void probe_roms(void);
746ef0cd 133
102e3b8d
JF
134#else
135void __init x86_64_start_kernel(char *real_mode);
f97013fd
JF
136void __init x86_64_start_reservations(char *real_mode_data);
137
ef685298 138#endif /* __i386__ */
fa76dab9 139#endif /* _SETUP */
796216a5
JF
140#else
141#define RESERVE_BRK(name,sz) \
142 .pushsection .brk_reservation,"aw",@nobits; \
0b1c723d 143.brk.name: \
796216a5 1441: .skip sz; \
0b1c723d 145 .size .brk.name,.-1b; \
796216a5 146 .popsection
ef685298
TG
147#endif /* __ASSEMBLY__ */
148#endif /* __KERNEL__ */
149
1965aae3 150#endif /* _ASM_X86_SETUP_H */