blob: 19769ac60616c088bd14db2333ef13a41985c18d [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_SETUP_H
2#define _ASM_X86_SETUP_H
Thomas Gleixneref685292007-10-23 22:37:24 +02003
Cyrill Gorcunovdbca1df2009-01-14 23:37:50 +03004#ifdef __KERNEL__
5
Thomas Gleixneref685292007-10-23 22:37:24 +02006#define COMMAND_LINE_SIZE 2048
7
Glauber de Oliveira Costa746ef0c2008-01-30 13:31:11 +01008#ifndef __ASSEMBLY__
Glauber Costa2785c8d2008-02-11 17:16:03 -02009
Thomas Gleixner57844a82009-08-19 14:48:38 +020010#include <asm/x86_init.h>
11
Ingo Molnar3b335532008-07-10 17:30:40 +020012/*
13 * Any setup quirks to be performed?
14 */
Jaswinder Singh Rajputf4f21b72009-01-03 15:48:52 +053015struct mpc_cpu;
Jaswinder Singh Rajput00fb8602009-01-03 15:47:32 +053016struct mpc_bus;
Jaswinder Singh Rajputb0e239f2009-01-03 15:52:54 +053017struct mpc_oemtable;
Ingo Molnar8e6dafd2009-02-23 00:34:39 +010018
Yinghai Lu3c9cb6d2008-07-19 02:07:25 -070019struct x86_quirks {
Yinghai Lu63b5d7a2008-07-19 18:02:26 -070020 int (*arch_pre_time_init)(void);
Yinghai Lu3c9cb6d2008-07-19 02:07:25 -070021 int (*arch_time_init)(void);
22 int (*arch_pre_intr_init)(void);
23 int (*arch_intr_init)(void);
24 int (*arch_trap_init)(void);
25 char * (*arch_memory_setup)(void);
26 int (*mach_get_smp_config)(unsigned int early);
27 int (*mach_find_smp_config)(unsigned int reserve);
Yinghai Lu64898a82008-07-19 18:01:16 -070028
29 int *mpc_record;
Jaswinder Singh Rajputf4f21b72009-01-03 15:48:52 +053030 int (*mpc_apic_id)(struct mpc_cpu *m);
Jaswinder Singh Rajput00fb8602009-01-03 15:47:32 +053031 void (*mpc_oem_bus_info)(struct mpc_bus *m, char *name);
32 void (*mpc_oem_pci_bus)(struct mpc_bus *m);
Jaswinder Singh Rajputb0e239f2009-01-03 15:52:54 +053033 void (*smp_read_mpc_oem)(struct mpc_oemtable *oemtable,
Cyrill Gorcunovdbca1df2009-01-14 23:37:50 +030034 unsigned short oemsize);
Yinghai Lua4dbc342008-07-25 02:14:28 -070035 int (*setup_ioapic_ids)(void);
Yinghai Lu3c9cb6d2008-07-19 02:07:25 -070036};
37
Ingo Molnar8e6dafd2009-02-23 00:34:39 +010038extern void x86_quirk_intr_init(void);
39
40extern void x86_quirk_trap_init(void);
41
42extern void x86_quirk_pre_time_init(void);
43extern void x86_quirk_time_init(void);
44
Glauber de Oliveira Costa746ef0c2008-01-30 13:31:11 +010045#endif /* __ASSEMBLY__ */
46
Thomas Gleixneref685292007-10-23 22:37:24 +020047#ifdef __i386__
48
49#include <linux/pfn.h>
50/*
51 * Reserved space for vmalloc and iomap - defined in asm/page.h
52 */
53#define MAXMEM_PFN PFN_DOWN(MAXMEM)
54#define MAX_NONPAE_PFN (1 << 20)
55
Thomas Gleixneref685292007-10-23 22:37:24 +020056#endif /* __i386__ */
57
H. Peter Anvinfa76dab2007-10-23 22:37:25 +020058#define PARAM_SIZE 4096 /* sizeof(struct boot_params) */
59
60#define OLD_CL_MAGIC 0xA33F
61#define OLD_CL_ADDRESS 0x020 /* Relative to real mode data */
62#define NEW_CL_POINTER 0x228 /* Relative to real mode data */
63
Thomas Gleixneref685292007-10-23 22:37:24 +020064#ifndef __ASSEMBLY__
65#include <asm/bootparam.h>
66
Jaswinder Singh Rajput15c55442009-02-02 21:59:19 +053067/* Interrupt control for vSMPowered x86_64 systems */
Ravikiran G Thirumalai70511132009-03-23 23:14:29 -070068#ifdef CONFIG_X86_64
Jaswinder Singh Rajput15c55442009-02-02 21:59:19 +053069void vsmp_init(void);
Yinghai Lu129d8bc2009-02-25 21:20:50 -080070#else
71static inline void vsmp_init(void) { }
72#endif
Jaswinder Singh Rajput15c55442009-02-02 21:59:19 +053073
74void setup_bios_corruption_check(void);
75
76#ifdef CONFIG_X86_VISWS
77extern void visws_early_detect(void);
78extern int is_visws_box(void);
79#else
80static inline void visws_early_detect(void) { }
81static inline int is_visws_box(void) { return 0; }
82#endif
83
Jaswinder Singh Rajput15c55442009-02-02 21:59:19 +053084extern struct x86_quirks *x86_quirks;
85extern unsigned long saved_video_mode;
86
87#ifndef CONFIG_PARAVIRT
88#define paravirt_post_allocator_init() do {} while (0)
89#endif
90
Thomas Gleixner8fee6972009-08-19 14:55:50 +020091extern void reserve_standard_io_resources(void);
92extern void i386_reserve_resources(void);
93
H. Peter Anvinfa76dab2007-10-23 22:37:25 +020094#ifndef _SETUP
95
Thomas Gleixneref685292007-10-23 22:37:24 +020096/*
97 * This is set up by the setup-routine at boot-time
98 */
99extern struct boot_params boot_params;
100
Thomas Gleixneref685292007-10-23 22:37:24 +0200101/*
102 * Do NOT EVER look at the BIOS memory size location.
103 * It does not work on many machines.
104 */
105#define LOWMEMSIZE() (0x9f000)
106
Jeremy Fitzhardinge93dbda72009-02-26 17:35:44 -0800107/* exceedingly early brk-like allocator */
108extern unsigned long _brk_end;
109void *extend_brk(size_t size, size_t align);
110
Jeremy Fitzhardinge796216a2009-03-12 16:09:49 -0700111/*
112 * Reserve space in the brk section. The name must be unique within
113 * the file, and somewhat descriptive. The size is in bytes. Must be
114 * used at file scope.
115 *
116 * (This uses a temp function to wrap the asm so we can pass it the
117 * size parameter; otherwise we wouldn't be able to. We can't use a
118 * "section" attribute on a normal variable because it always ends up
119 * being @progbits, which ends up allocating space in the vmlinux
120 * executable.)
121 */
122#define RESERVE_BRK(name,sz) \
Jeremy Fitzhardinge0b1c7232009-03-14 23:19:38 -0700123 static void __section(.discard) __used \
Jeremy Fitzhardinge796216a2009-03-12 16:09:49 -0700124 __brk_reservation_fn_##name##__(void) { \
125 asm volatile ( \
126 ".pushsection .brk_reservation,\"aw\",@nobits;" \
Jeremy Fitzhardinge0b1c7232009-03-14 23:19:38 -0700127 ".brk." #name ":" \
Jeremy Fitzhardinge796216a2009-03-12 16:09:49 -0700128 " 1:.skip %c0;" \
Jeremy Fitzhardinge0b1c7232009-03-14 23:19:38 -0700129 " .size .brk." #name ", . - 1b;" \
Jeremy Fitzhardinge796216a2009-03-12 16:09:49 -0700130 " .popsection" \
131 : : "i" (sz)); \
132 }
133
Yinghai Lu95a71a42008-06-18 17:27:08 -0700134#ifdef __i386__
135
Yinghai Luf0d43102008-05-29 12:56:36 -0700136void __init i386_start_kernel(void);
Yinghai Lua9c11822008-06-21 15:39:41 -0700137extern void probe_roms(void);
Yinghai Luf0d43102008-05-29 12:56:36 -0700138
Jeremy Fitzhardinge102e3b82008-06-25 00:19:09 -0400139#else
140void __init x86_64_start_kernel(char *real_mode);
Jeremy Fitzhardingef97013f2008-06-25 00:19:18 -0400141void __init x86_64_start_reservations(char *real_mode_data);
142
Thomas Gleixneref685292007-10-23 22:37:24 +0200143#endif /* __i386__ */
H. Peter Anvinfa76dab2007-10-23 22:37:25 +0200144#endif /* _SETUP */
Jeremy Fitzhardinge796216a2009-03-12 16:09:49 -0700145#else
146#define RESERVE_BRK(name,sz) \
147 .pushsection .brk_reservation,"aw",@nobits; \
Jeremy Fitzhardinge0b1c7232009-03-14 23:19:38 -0700148.brk.name: \
Jeremy Fitzhardinge796216a2009-03-12 16:09:49 -07001491: .skip sz; \
Jeremy Fitzhardinge0b1c7232009-03-14 23:19:38 -0700150 .size .brk.name,.-1b; \
Jeremy Fitzhardinge796216a2009-03-12 16:09:49 -0700151 .popsection
Thomas Gleixneref685292007-10-23 22:37:24 +0200152#endif /* __ASSEMBLY__ */
153#endif /* __KERNEL__ */
154
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700155#endif /* _ASM_X86_SETUP_H */