summaryrefslogtreecommitdiff
path: root/com32/gplinclude/memory.h
blob: fe33c18d2b47a09ec2a813274b39871968a1bdca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* ----------------------------------------------------------------------- *
 *
 *   Copyright 2009 Pierre-Alexandre Meyer
 *
 *   Some parts borrowed from meminfo.c32:
 *
 *   Copyright 2003-2009 H. Peter Anvin - All Rights Reserved
 *   Copyright 2009 Intel Corporation; author: H. Peter Anvin
 *
 *   Some parts borrowed from Linux:
 *
 *   Copyright (C) 1991, 1992 Linus Torvalds
 *   Copyright 2007 rPath, Inc. - All Rights Reserved
 *   Copyright 2009 Intel Corporation; author H. Peter Anvin
 *
 *   This file is part of Syslinux, and is made available under
 *   the terms of the GNU General Public License version 2.
 *
 * ----------------------------------------------------------------------- */

#ifndef _MEMORY_H_
#define _MEMORY_H_
#include <stdint.h>

#define E820MAX 128
#define E820_RAM        1
#define E820_RESERVED   2
#define E820_ACPI       3	/* usable as RAM once ACPI tables have been read */
#define E820_NVS        4

#define RES_START       0xa0000
#define RES_END         0x100000

struct e820entry {
    uint64_t addr;		/* start of memory segment */
    uint64_t size;		/* size of memory segment */
    uint64_t type;		/* type of memory segment */
} __attribute__ ((packed));

const char *const e820_types[5];

void get_type(int, char *, int);
void detect_memory_e820(struct e820entry *desc, int size_map, int *size_found);
int detect_memory_e801(int *, int *);
int detect_memory_88(int *);

/* The following stuff could be merge once the addr_t will be set to 64bits.
 * syslinux_scan_memory can be used for that purpose */
unsigned long memsize_e820(struct e820entry *e820, int e820_nr);
int sanitize_e820_map(struct e820entry *orig_map, struct e820entry *new_bios,
		      short old_nr);
unsigned long detect_memsize(void);
#endif