blob: 5a3a1371575610a6b2bec11501691dc523cba7a0 [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
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
Ingo Molnar3b335532008-07-10 17:30:40 +02008/*
9 * Any setup quirks to be performed?
10 */
Jaswinder Singh Rajputf4f21b72009-01-03 15:48:52 +053011struct mpc_cpu;
Jaswinder Singh Rajput00fb8602009-01-03 15:47:32 +053012struct mpc_bus;
Jaswinder Singh Rajputb0e239f2009-01-03 15:52:54 +053013struct mpc_oemtable;
Yinghai Lu3c9cb6d2008-07-19 02:07:25 -070014struct x86_quirks {
Yinghai Lu63b5d7a2008-07-19 18:02:26 -070015 int (*arch_pre_time_init)(void);
Yinghai Lu3c9cb6d2008-07-19 02:07:25 -070016 int (*arch_time_init)(void);
17 int (*arch_pre_intr_init)(void);
18 int (*arch_intr_init)(void);
19 int (*arch_trap_init)(void);
20 char * (*arch_memory_setup)(void);
21 int (*mach_get_smp_config)(unsigned int early);
22 int (*mach_find_smp_config)(unsigned int reserve);
Yinghai Lu64898a82008-07-19 18:01:16 -070023
24 int *mpc_record;
Jaswinder Singh Rajputf4f21b72009-01-03 15:48:52 +053025 int (*mpc_apic_id)(struct mpc_cpu *m);
Jaswinder Singh Rajput00fb8602009-01-03 15:47:32 +053026 void (*mpc_oem_bus_info)(struct mpc_bus *m, char *name);
27 void (*mpc_oem_pci_bus)(struct mpc_bus *m);
Jaswinder Singh Rajputb0e239f2009-01-03 15:52:54 +053028 void (*smp_read_mpc_oem)(struct mpc_oemtable *oemtable,
Yinghai Lu64898a82008-07-19 18:01:16 -070029 unsigned short oemsize);
Yinghai Lua4dbc342008-07-25 02:14:28 -070030 int (*setup_ioapic_ids)(void);
Yinghai Lu54ac14a2008-11-17 15:19:53 -080031 int (*update_genapic)(void);
Yinghai Lu3c9cb6d2008-07-19 02:07:25 -070032};
33
Glauber de Oliveira Costa746ef0c2008-01-30 13:31:11 +010034#endif /* __ASSEMBLY__ */
35
Thomas Gleixner96a388d2007-10-11 11:20:03 +020036#ifdef __KERNEL__
Thomas Gleixneref685292007-10-23 22:37:24 +020037
38#ifdef __i386__
39
40#include <linux/pfn.h>
41/*
42 * Reserved space for vmalloc and iomap - defined in asm/page.h
43 */
44#define MAXMEM_PFN PFN_DOWN(MAXMEM)
45#define MAX_NONPAE_PFN (1 << 20)
46
Thomas Gleixneref685292007-10-23 22:37:24 +020047#endif /* __i386__ */
48
H. Peter Anvinfa76dab2007-10-23 22:37:25 +020049#define PARAM_SIZE 4096 /* sizeof(struct boot_params) */
50
51#define OLD_CL_MAGIC 0xA33F
52#define OLD_CL_ADDRESS 0x020 /* Relative to real mode data */
53#define NEW_CL_POINTER 0x228 /* Relative to real mode data */
54
Thomas Gleixneref685292007-10-23 22:37:24 +020055#ifndef __ASSEMBLY__
56#include <asm/bootparam.h>
57
Jaswinder Singh Rajput15c55442009-02-02 21:59:19 +053058/* Interrupt control for vSMPowered x86_64 systems */
59void vsmp_init(void);
60
61void setup_bios_corruption_check(void);
62
63#ifdef CONFIG_X86_VISWS
64extern void visws_early_detect(void);
65extern int is_visws_box(void);
66#else
67static inline void visws_early_detect(void) { }
68static inline int is_visws_box(void) { return 0; }
69#endif
70
71extern int wakeup_secondary_cpu_via_nmi(int apicid, unsigned long start_eip);
72extern int wakeup_secondary_cpu_via_init(int apicid, unsigned long start_eip);
73extern struct x86_quirks *x86_quirks;
74extern unsigned long saved_video_mode;
75
76#ifndef CONFIG_PARAVIRT
77#define paravirt_post_allocator_init() do {} while (0)
78#endif
79
H. Peter Anvinfa76dab2007-10-23 22:37:25 +020080#ifndef _SETUP
81
Thomas Gleixneref685292007-10-23 22:37:24 +020082/*
83 * This is set up by the setup-routine at boot-time
84 */
85extern struct boot_params boot_params;
86
Thomas Gleixneref685292007-10-23 22:37:24 +020087/*
88 * Do NOT EVER look at the BIOS memory size location.
89 * It does not work on many machines.
90 */
91#define LOWMEMSIZE() (0x9f000)
92
Yinghai Lu95a71a42008-06-18 17:27:08 -070093#ifdef __i386__
94
Yinghai Luf0d43102008-05-29 12:56:36 -070095void __init i386_start_kernel(void);
Yinghai Lua9c11822008-06-21 15:39:41 -070096extern void probe_roms(void);
Yinghai Luf0d43102008-05-29 12:56:36 -070097
98extern unsigned long init_pg_tables_start;
Thomas Gleixneref685292007-10-23 22:37:24 +020099extern unsigned long init_pg_tables_end;
100
Jeremy Fitzhardinge102e3b82008-06-25 00:19:09 -0400101#else
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -0700102void __init x86_64_init_pda(void);
Jeremy Fitzhardinge102e3b82008-06-25 00:19:09 -0400103void __init x86_64_start_kernel(char *real_mode);
Jeremy Fitzhardingef97013f2008-06-25 00:19:18 -0400104void __init x86_64_start_reservations(char *real_mode_data);
105
Thomas Gleixneref685292007-10-23 22:37:24 +0200106#endif /* __i386__ */
H. Peter Anvinfa76dab2007-10-23 22:37:25 +0200107#endif /* _SETUP */
Thomas Gleixneref685292007-10-23 22:37:24 +0200108#endif /* __ASSEMBLY__ */
109#endif /* __KERNEL__ */
110
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700111#endif /* _ASM_X86_SETUP_H */