blob: 66191d0de3c93b8f1833c1b4e93e67e99308a45f [file] [log] [blame]
Thomas Gleixneref685292007-10-23 22:37:24 +02001#ifndef _ASM_X86_SETUP_H
2#define _ASM_X86_SETUP_H
3
4#define COMMAND_LINE_SIZE 2048
5
Glauber de Oliveira Costa746ef0c2008-01-30 13:31:11 +01006#ifndef __ASSEMBLY__
Glauber Costa2785c8d2008-02-11 17:16:03 -02007
8/* Interrupt control for vSMPowered x86_64 systems */
9void vsmp_init(void);
10
Ingo Molnar3b335532008-07-10 17:30:40 +020011#ifdef CONFIG_X86_VISWS
12extern void visws_early_detect(void);
Ingo Molnar5548ed12008-07-10 16:53:21 +020013extern int is_visws_box(void);
Ingo Molnar3b335532008-07-10 17:30:40 +020014#else
15static inline void visws_early_detect(void) { }
Ingo Molnar5548ed12008-07-10 16:53:21 +020016static inline int is_visws_box(void) { return 0; }
Ingo Molnar3b335532008-07-10 17:30:40 +020017#endif
18
19/*
20 * Any setup quirks to be performed?
21 */
Yinghai Lu3c9cb6d2008-07-19 02:07:25 -070022struct x86_quirks {
23 int (*arch_time_init)(void);
24 int (*arch_pre_intr_init)(void);
25 int (*arch_intr_init)(void);
26 int (*arch_trap_init)(void);
27 char * (*arch_memory_setup)(void);
28 int (*mach_get_smp_config)(unsigned int early);
29 int (*mach_find_smp_config)(unsigned int reserve);
30};
31
32extern struct x86_quirks *x86_quirks;
Ingo Molnar3b335532008-07-10 17:30:40 +020033
Glauber de Oliveira Costa746ef0c2008-01-30 13:31:11 +010034#ifndef CONFIG_PARAVIRT
35#define paravirt_post_allocator_init() do {} while (0)
36#endif
37#endif /* __ASSEMBLY__ */
38
Thomas Gleixner96a388d2007-10-11 11:20:03 +020039#ifdef __KERNEL__
Thomas Gleixneref685292007-10-23 22:37:24 +020040
41#ifdef __i386__
42
43#include <linux/pfn.h>
44/*
45 * Reserved space for vmalloc and iomap - defined in asm/page.h
46 */
47#define MAXMEM_PFN PFN_DOWN(MAXMEM)
48#define MAX_NONPAE_PFN (1 << 20)
49
Thomas Gleixneref685292007-10-23 22:37:24 +020050#endif /* __i386__ */
51
H. Peter Anvinfa76dab2007-10-23 22:37:25 +020052#define PARAM_SIZE 4096 /* sizeof(struct boot_params) */
53
54#define OLD_CL_MAGIC 0xA33F
55#define OLD_CL_ADDRESS 0x020 /* Relative to real mode data */
56#define NEW_CL_POINTER 0x228 /* Relative to real mode data */
57
Thomas Gleixneref685292007-10-23 22:37:24 +020058#ifndef __ASSEMBLY__
59#include <asm/bootparam.h>
60
H. Peter Anvinfa76dab2007-10-23 22:37:25 +020061#ifndef _SETUP
62
Thomas Gleixneref685292007-10-23 22:37:24 +020063/*
64 * This is set up by the setup-routine at boot-time
65 */
66extern struct boot_params boot_params;
67
Thomas Gleixneref685292007-10-23 22:37:24 +020068/*
69 * Do NOT EVER look at the BIOS memory size location.
70 * It does not work on many machines.
71 */
72#define LOWMEMSIZE() (0x9f000)
73
Yinghai Lu95a71a42008-06-18 17:27:08 -070074#ifdef __i386__
75
Yinghai Luf0d43102008-05-29 12:56:36 -070076void __init i386_start_kernel(void);
Yinghai Lua9c11822008-06-21 15:39:41 -070077extern void probe_roms(void);
Yinghai Luf0d43102008-05-29 12:56:36 -070078
79extern unsigned long init_pg_tables_start;
Thomas Gleixneref685292007-10-23 22:37:24 +020080extern unsigned long init_pg_tables_end;
81
Jeremy Fitzhardinge102e3b82008-06-25 00:19:09 -040082#else
83void __init x86_64_start_kernel(char *real_mode);
Jeremy Fitzhardingef97013f2008-06-25 00:19:18 -040084void __init x86_64_start_reservations(char *real_mode_data);
85
Thomas Gleixneref685292007-10-23 22:37:24 +020086#endif /* __i386__ */
H. Peter Anvinfa76dab2007-10-23 22:37:25 +020087#endif /* _SETUP */
Thomas Gleixneref685292007-10-23 22:37:24 +020088#endif /* __ASSEMBLY__ */
89#endif /* __KERNEL__ */
90
91#endif /* _ASM_X86_SETUP_H */