mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
ab4a465e96
since we now have 32-bit support for e820_register_active_regions(), we can merge the parsing of the mem=/memmap= boot parameters. Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
27 lines
921 B
C
27 lines
921 B
C
/*
|
|
* structures and definitions for the int 15, ax=e820 memory map
|
|
* scheme.
|
|
*
|
|
* In a nutshell, setup.S populates a scratch table in the
|
|
* empty_zero_block that contains a list of usable address/size
|
|
* duples. setup.c, this information is transferred into the e820map,
|
|
* and in init.c/numa.c, that new information is used to mark pages
|
|
* reserved or not.
|
|
*/
|
|
#ifndef __E820_HEADER
|
|
#define __E820_HEADER
|
|
|
|
#include <linux/ioport.h>
|
|
|
|
#ifndef __ASSEMBLY__
|
|
extern void setup_memory_region(void);
|
|
extern void contig_e820_setup(void);
|
|
extern void e820_reserve_resources(void);
|
|
extern int e820_any_non_reserved(unsigned long start, unsigned long end);
|
|
extern int is_memory_any_valid(unsigned long start, unsigned long end);
|
|
extern int e820_all_non_reserved(unsigned long start, unsigned long end);
|
|
extern int is_memory_all_valid(unsigned long start, unsigned long end);
|
|
|
|
#endif/*!__ASSEMBLY__*/
|
|
|
|
#endif/*__E820_HEADER*/
|