x86: extend and use x86_quirks to clean up NUMAQ code
[linux-block.git] / include / asm-x86 / setup.h
1 #ifndef _ASM_X86_SETUP_H
2 #define _ASM_X86_SETUP_H
3
4 #define COMMAND_LINE_SIZE 2048
5
6 #ifndef __ASSEMBLY__
7
8 /* Interrupt control for vSMPowered x86_64 systems */
9 void vsmp_init(void);
10
11 #ifdef CONFIG_X86_VISWS
12 extern void visws_early_detect(void);
13 extern int is_visws_box(void);
14 #else
15 static inline void visws_early_detect(void) { }
16 static inline int is_visws_box(void) { return 0; }
17 #endif
18
19 /*
20  * Any setup quirks to be performed?
21  */
22 struct mpc_config_processor;
23 struct mpc_config_bus;
24 struct mp_config_oemtable;
25 struct x86_quirks {
26         int (*arch_time_init)(void);
27         int (*arch_pre_intr_init)(void);
28         int (*arch_intr_init)(void);
29         int (*arch_trap_init)(void);
30         char * (*arch_memory_setup)(void);
31         int (*mach_get_smp_config)(unsigned int early);
32         int (*mach_find_smp_config)(unsigned int reserve);
33
34         int *mpc_record;
35         int (*mpc_apic_id)(struct mpc_config_processor *m);
36         void (*mpc_oem_bus_info)(struct mpc_config_bus *m, char *name);
37         void (*mpc_oem_pci_bus)(struct mpc_config_bus *m);
38         void (*smp_read_mpc_oem)(struct mp_config_oemtable *oemtable,
39                                     unsigned short oemsize);
40 };
41
42 extern struct x86_quirks *x86_quirks;
43
44 #ifndef CONFIG_PARAVIRT
45 #define paravirt_post_allocator_init()  do {} while (0)
46 #endif
47 #endif /* __ASSEMBLY__ */
48
49 #ifdef __KERNEL__
50
51 #ifdef __i386__
52
53 #include <linux/pfn.h>
54 /*
55  * Reserved space for vmalloc and iomap - defined in asm/page.h
56  */
57 #define MAXMEM_PFN      PFN_DOWN(MAXMEM)
58 #define MAX_NONPAE_PFN  (1 << 20)
59
60 #endif /* __i386__ */
61
62 #define PARAM_SIZE 4096         /* sizeof(struct boot_params) */
63
64 #define OLD_CL_MAGIC            0xA33F
65 #define OLD_CL_ADDRESS          0x020   /* Relative to real mode data */
66 #define NEW_CL_POINTER          0x228   /* Relative to real mode data */
67
68 #ifndef __ASSEMBLY__
69 #include <asm/bootparam.h>
70
71 #ifndef _SETUP
72
73 /*
74  * This is set up by the setup-routine at boot-time
75  */
76 extern struct boot_params boot_params;
77
78 /*
79  * Do NOT EVER look at the BIOS memory size location.
80  * It does not work on many machines.
81  */
82 #define LOWMEMSIZE()    (0x9f000)
83
84 #ifdef __i386__
85
86 void __init i386_start_kernel(void);
87 extern void probe_roms(void);
88
89 extern unsigned long init_pg_tables_start;
90 extern unsigned long init_pg_tables_end;
91
92 #else
93 void __init x86_64_start_kernel(char *real_mode);
94 void __init x86_64_start_reservations(char *real_mode_data);
95
96 #endif /* __i386__ */
97 #endif /* _SETUP */
98 #endif /* __ASSEMBLY__ */
99 #endif  /*  __KERNEL__  */
100
101 #endif /* _ASM_X86_SETUP_H */