blob: fa6763af8d2686c8d1b52a023f72c70806ec5bc4 [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
Glauber de Oliveira Costa746ef0c2008-01-30 13:31:11 +010011char *machine_specific_memory_setup(void);
12#ifndef CONFIG_PARAVIRT
13#define paravirt_post_allocator_init() do {} while (0)
14#endif
15#endif /* __ASSEMBLY__ */
16
Thomas Gleixner96a388d2007-10-11 11:20:03 +020017#ifdef __KERNEL__
Thomas Gleixneref685292007-10-23 22:37:24 +020018
19#ifdef __i386__
20
21#include <linux/pfn.h>
22/*
23 * Reserved space for vmalloc and iomap - defined in asm/page.h
24 */
25#define MAXMEM_PFN PFN_DOWN(MAXMEM)
26#define MAX_NONPAE_PFN (1 << 20)
27
Thomas Gleixneref685292007-10-23 22:37:24 +020028#endif /* __i386__ */
29
H. Peter Anvinfa76dab2007-10-23 22:37:25 +020030#define PARAM_SIZE 4096 /* sizeof(struct boot_params) */
31
32#define OLD_CL_MAGIC 0xA33F
33#define OLD_CL_ADDRESS 0x020 /* Relative to real mode data */
34#define NEW_CL_POINTER 0x228 /* Relative to real mode data */
35
Thomas Gleixneref685292007-10-23 22:37:24 +020036#ifndef __ASSEMBLY__
37#include <asm/bootparam.h>
38
H. Peter Anvinfa76dab2007-10-23 22:37:25 +020039#ifndef _SETUP
40
Thomas Gleixneref685292007-10-23 22:37:24 +020041/*
42 * This is set up by the setup-routine at boot-time
43 */
44extern struct boot_params boot_params;
45
46#ifdef __i386__
47/*
48 * Do NOT EVER look at the BIOS memory size location.
49 * It does not work on many machines.
50 */
51#define LOWMEMSIZE() (0x9f000)
52
53struct e820entry;
54
55char * __init machine_specific_memory_setup(void);
56char *memory_setup(void);
57
Joe Perches915cd5a2008-03-23 01:03:25 -070058int __init copy_e820_map(struct e820entry *biosmap, int nr_map);
59int __init sanitize_e820_map(struct e820entry *biosmap, char *pnr_map);
Thomas Gleixneref685292007-10-23 22:37:24 +020060void __init add_memory_region(unsigned long long start,
61 unsigned long long size, int type);
62
63extern unsigned long init_pg_tables_end;
64
Glauber de Oliveira Costa746ef0c2008-01-30 13:31:11 +010065
Thomas Gleixneref685292007-10-23 22:37:24 +020066
67#endif /* __i386__ */
H. Peter Anvinfa76dab2007-10-23 22:37:25 +020068#endif /* _SETUP */
Thomas Gleixneref685292007-10-23 22:37:24 +020069#endif /* __ASSEMBLY__ */
70#endif /* __KERNEL__ */
71
72#endif /* _ASM_X86_SETUP_H */