2008-10-23 05:26:29 +00:00
|
|
|
#ifndef _ASM_X86_SETUP_H
|
|
|
|
#define _ASM_X86_SETUP_H
|
2007-10-23 20:37:24 +00:00
|
|
|
|
2009-01-14 20:37:50 +00:00
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
2007-10-23 20:37:24 +00:00
|
|
|
#define COMMAND_LINE_SIZE 2048
|
|
|
|
|
|
|
|
#ifdef __i386__
|
|
|
|
|
|
|
|
#include <linux/pfn.h>
|
|
|
|
/*
|
|
|
|
* Reserved space for vmalloc and iomap - defined in asm/page.h
|
|
|
|
*/
|
|
|
|
#define MAXMEM_PFN PFN_DOWN(MAXMEM)
|
|
|
|
#define MAX_NONPAE_PFN (1 << 20)
|
|
|
|
|
2007-10-23 20:37:25 +00:00
|
|
|
#endif /* __i386__ */
|
|
|
|
|
|
|
|
#define PARAM_SIZE 4096 /* sizeof(struct boot_params) */
|
2007-10-23 20:37:24 +00:00
|
|
|
|
|
|
|
#define OLD_CL_MAGIC 0xA33F
|
2007-10-23 20:37:25 +00:00
|
|
|
#define OLD_CL_ADDRESS 0x020 /* Relative to real mode data */
|
2007-10-23 20:37:24 +00:00
|
|
|
#define NEW_CL_POINTER 0x228 /* Relative to real mode data */
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#include <asm/bootparam.h>
|
2009-08-19 13:37:03 +00:00
|
|
|
#include <asm/x86_init.h>
|
2007-10-23 20:37:24 +00:00
|
|
|
|
2009-02-02 16:29:19 +00:00
|
|
|
/* Interrupt control for vSMPowered x86_64 systems */
|
2009-03-24 06:14:29 +00:00
|
|
|
#ifdef CONFIG_X86_64
|
2009-02-02 16:29:19 +00:00
|
|
|
void vsmp_init(void);
|
2009-02-26 05:20:50 +00:00
|
|
|
#else
|
|
|
|
static inline void vsmp_init(void) { }
|
|
|
|
#endif
|
2009-02-02 16:29:19 +00:00
|
|
|
|
|
|
|
void setup_bios_corruption_check(void);
|
|
|
|
|
|
|
|
#ifdef CONFIG_X86_VISWS
|
|
|
|
extern void visws_early_detect(void);
|
|
|
|
#else
|
|
|
|
static inline void visws_early_detect(void) { }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern unsigned long saved_video_mode;
|
|
|
|
|
2009-08-19 12:55:50 +00:00
|
|
|
extern void reserve_standard_io_resources(void);
|
|
|
|
extern void i386_reserve_resources(void);
|
2009-08-19 13:37:03 +00:00
|
|
|
extern void setup_default_timer_irq(void);
|
2009-08-19 12:55:50 +00:00
|
|
|
|
2009-08-29 12:54:20 +00:00
|
|
|
#ifdef CONFIG_X86_MRST
|
|
|
|
extern void x86_mrst_early_setup(void);
|
|
|
|
#else
|
|
|
|
static inline void x86_mrst_early_setup(void) { }
|
|
|
|
#endif
|
|
|
|
|
2010-11-09 20:08:04 +00:00
|
|
|
#ifdef CONFIG_X86_INTEL_CE
|
|
|
|
extern void x86_ce4100_early_setup(void);
|
|
|
|
#else
|
|
|
|
static inline void x86_ce4100_early_setup(void) { }
|
|
|
|
#endif
|
|
|
|
|
2007-10-23 20:37:25 +00:00
|
|
|
#ifndef _SETUP
|
|
|
|
|
2007-10-23 20:37:24 +00:00
|
|
|
/*
|
|
|
|
* This is set up by the setup-routine at boot-time
|
|
|
|
*/
|
|
|
|
extern struct boot_params boot_params;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do NOT EVER look at the BIOS memory size location.
|
|
|
|
* It does not work on many machines.
|
|
|
|
*/
|
|
|
|
#define LOWMEMSIZE() (0x9f000)
|
|
|
|
|
x86: add brk allocation for very, very early allocations
Impact: new interface
Add a brk()-like allocator which effectively extends the bss in order
to allow very early code to do dynamic allocations. This is better than
using statically allocated arrays for data in subsystems which may never
get used.
The space for brk allocations is in the bss ELF segment, so that the
space is mapped properly by the code which maps the kernel, and so
that bootloaders keep the space free rather than putting a ramdisk or
something into it.
The bss itself, delimited by __bss_stop, ends before the brk area
(__brk_base to __brk_limit). The kernel text, data and bss is reserved
up to __bss_stop.
Any brk-allocated data is reserved separately just before the kernel
pagetable is built, as that code allocates from unreserved spaces
in the e820 map, potentially allocating from any unused brk memory.
Ultimately any unused memory in the brk area is used in the general
kernel memory pool.
Initially the brk space is set to 1MB, which is probably much larger
than any user needs (the largest current user is i386 head_32.S's code
to build the pagetables to map the kernel, which can get fairly large
with a big kernel image and no PSE support). So long as the system
has sufficient memory for the bootloader to reserve the kernel+1MB brk,
there are no bad effects resulting from an over-large brk.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
2009-02-27 01:35:44 +00:00
|
|
|
/* exceedingly early brk-like allocator */
|
|
|
|
extern unsigned long _brk_end;
|
|
|
|
void *extend_brk(size_t size, size_t align);
|
|
|
|
|
2009-03-12 23:09:49 +00:00
|
|
|
/*
|
|
|
|
* Reserve space in the brk section. The name must be unique within
|
|
|
|
* the file, and somewhat descriptive. The size is in bytes. Must be
|
|
|
|
* used at file scope.
|
|
|
|
*
|
|
|
|
* (This uses a temp function to wrap the asm so we can pass it the
|
|
|
|
* size parameter; otherwise we wouldn't be able to. We can't use a
|
|
|
|
* "section" attribute on a normal variable because it always ends up
|
|
|
|
* being @progbits, which ends up allocating space in the vmlinux
|
|
|
|
* executable.)
|
|
|
|
*/
|
|
|
|
#define RESERVE_BRK(name,sz) \
|
2011-04-13 20:43:29 +00:00
|
|
|
static void __section(.discard.text) __used notrace \
|
2009-03-12 23:09:49 +00:00
|
|
|
__brk_reservation_fn_##name##__(void) { \
|
|
|
|
asm volatile ( \
|
|
|
|
".pushsection .brk_reservation,\"aw\",@nobits;" \
|
2009-03-15 06:19:38 +00:00
|
|
|
".brk." #name ":" \
|
2009-03-12 23:09:49 +00:00
|
|
|
" 1:.skip %c0;" \
|
2009-03-15 06:19:38 +00:00
|
|
|
" .size .brk." #name ", . - 1b;" \
|
2009-03-12 23:09:49 +00:00
|
|
|
" .popsection" \
|
|
|
|
: : "i" (sz)); \
|
|
|
|
}
|
|
|
|
|
2010-09-03 02:35:22 +00:00
|
|
|
/* Helper for reserving space for arrays of things */
|
|
|
|
#define RESERVE_BRK_ARRAY(type, name, entries) \
|
|
|
|
type *name; \
|
|
|
|
RESERVE_BRK(name, sizeof(type) * entries)
|
|
|
|
|
2011-03-08 18:36:19 +00:00
|
|
|
extern void probe_roms(void);
|
2008-06-19 00:27:08 +00:00
|
|
|
#ifdef __i386__
|
|
|
|
|
2008-05-29 19:56:36 +00:00
|
|
|
void __init i386_start_kernel(void);
|
2008-01-30 12:31:11 +00:00
|
|
|
|
2008-06-25 04:19:09 +00:00
|
|
|
#else
|
|
|
|
void __init x86_64_start_kernel(char *real_mode);
|
2008-06-25 04:19:18 +00:00
|
|
|
void __init x86_64_start_reservations(char *real_mode_data);
|
|
|
|
|
2007-10-23 20:37:24 +00:00
|
|
|
#endif /* __i386__ */
|
2007-10-23 20:37:25 +00:00
|
|
|
#endif /* _SETUP */
|
2009-03-12 23:09:49 +00:00
|
|
|
#else
|
|
|
|
#define RESERVE_BRK(name,sz) \
|
|
|
|
.pushsection .brk_reservation,"aw",@nobits; \
|
2009-03-15 06:19:38 +00:00
|
|
|
.brk.name: \
|
2009-03-12 23:09:49 +00:00
|
|
|
1: .skip sz; \
|
2009-03-15 06:19:38 +00:00
|
|
|
.size .brk.name,.-1b; \
|
2009-03-12 23:09:49 +00:00
|
|
|
.popsection
|
2007-10-23 20:37:24 +00:00
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
|
2008-10-23 05:26:29 +00:00
|
|
|
#endif /* _ASM_X86_SETUP_H */
|