1 /* ----------------------------------------------------------------------- *
3 * Copyright 2001-2008 H. Peter Anvin - All Rights Reserved
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, Inc., 53 Temple Place Ste 330,
8 * Boston MA 02111-1307, USA; either version 2 of the License, or
9 * (at your option) any later version; incorporated herein by reference.
11 * ----------------------------------------------------------------------- */
16 * Initialization code for memory-based disk
29 uint32_t dos_mem
= 0; /* 0-1MB */
30 uint32_t low_mem
= 0; /* 1-16MB */
31 uint32_t high_mem
= 0; /* 16+ MB */
35 static inline int get_e820(void)
46 memset(®s
, 0, sizeof regs
);
47 memset(buf
, 0, sizeof *buf
);
50 regs
.eax
.l
= 0x0000e820;
51 regs
.ecx
.l
= sizeof(*buf
);
52 regs
.edx
.l
= 0x534d4150;
53 regs
.edi
.w
[0] = OFFS(buf
);
56 intcall(0x15, ®s
, ®s
);
57 copied
= (regs
.eflags
.l
& 1) ? 0 : regs
.ecx
.l
;
59 if (regs
.eax
.l
!= 0x534d4150 || copied
< 20)
62 printf("e820: %08x%08x %08x%08x %d\n",
63 (uint32_t) (buf
->base
>> 32), (uint32_t) buf
->base
,
64 (uint32_t) (buf
->len
>> 32), (uint32_t) buf
->len
, buf
->type
);
66 insertrange(buf
->base
, buf
->len
, buf
->type
);
74 static inline void get_dos_mem(void)
78 memset(®s
, 0, sizeof regs
);
79 intcall(0x12, ®s
, ®s
);
80 insertrange(0, (uint64_t) ((uint32_t) regs
.eax
.w
[0] << 10), 1);
81 printf(" DOS: %d K\n", regs
.eax
.w
[0]);
84 static inline int get_e801(void)
89 memset(®s
, 0, sizeof regs
);
91 regs
.eax
.w
[0] = 0xe801;
92 intcall(0x15, ®s
, ®s
);
94 if (!(err
= regs
.eflags
.l
& 1)) {
96 insertrange(0x100000, (uint64_t) ((uint32_t) regs
.eax
.w
[0] << 10),
100 insertrange(0x1000000, (uint64_t) ((uint32_t) regs
.ebx
.w
[0] << 16),
104 printf("e801: %04x %04x\n", regs
.eax
.w
[0], regs
.ebx
.w
[0]);
110 static inline int get_88(void)
115 memset(®s
, 0, sizeof regs
);
117 regs
.eax
.b
[1] = 0x88;
118 intcall(0x15, ®s
, ®s
);
120 if (!(err
= regs
.eflags
.l
& 1)) {
122 insertrange(0x100000, (uint64_t) ((uint32_t) regs
.eax
.w
[0] << 10),
126 printf(" 88: %04x\n", regs
.eax
.w
[0]);
138 die("MEMDISK: Unable to obtain memory map\n");
146 #define PW(x) (1ULL << (x))
150 struct e820range
*ep
;
152 dos_mem
= low_mem
= high_mem
= 0;
154 /* Derive "dos mem", "high mem", and "low mem" from the range array */
155 for (ep
= ranges
; ep
->type
!= -1U; ep
++) {
157 /* Only look at memory ranges */
158 if (ep
->start
== 0) {
159 if (ep
[1].start
> PW(20))
162 dos_mem
= ep
[1].start
;
164 if (ep
->start
<= PW(20) && ep
[1].start
> PW(20)) {
165 if (ep
[1].start
> PW(24))
166 low_mem
= PW(24) - PW(20);
168 low_mem
= ep
[1].start
- PW(20);
170 if (ep
->start
<= PW(24) && ep
[1].start
> PW(24)) {
171 if (ep
[1].start
> PW(32))
172 high_mem
= PW(32) - PW(24);
174 high_mem
= ep
[1].start
- PW(24);