e80e7d5d69a52844c21151d67522f1644b385c4a
[dragonfly.git] / sys / boot / pc32 / libi386 / biosmem.c
1 /*-
2  * Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/boot/i386/libi386/biosmem.c,v 1.7 2003/08/25 23:28:31 obrien Exp $
27  */
28 /*
29  * Obtain memory configuration information from the BIOS
30  */
31 #include <stand.h>
32 #include <machine/psl.h>
33 #include "libi386.h"
34 #include "btxv86.h"
35
36 #define LOADER_HEAP_SIZE        (1024 * 1024)
37
38 vm_offset_t     memtop;
39 vm_offset_t     heapbase;
40 u_int32_t       bios_basemem, bios_extmem, bios_howmem;
41
42 #define SMAPSIG 0x534D4150
43
44 struct smap {
45     u_int64_t   base;
46     u_int64_t   length;
47     u_int32_t   type;
48 } __packed;
49
50 static struct smap smap;
51
52 void
53 bios_getmem(void)
54 {
55     int64_t v;
56
57     /* Parse system memory map */
58     v86.ebx = 0;
59     do {
60 #ifdef COMCONSOLE_DEBUG
61         printf("GET SMAP %d: ", v86.ebx);
62 #endif
63         v86.ctl = V86_FLAGS;
64         v86.addr = 0x15;                /* int 0x15 function 0xe820*/
65         v86.eax = 0xe820;
66         v86.ecx = sizeof(struct smap);
67         v86.edx = SMAPSIG;
68         v86.es = VTOPSEG(&smap);
69         v86.edi = VTOPOFF(&smap);
70         v86int();
71 #ifdef COMCONSOLE_DEBUG
72         printf("RESULT: EFL=%04x EAX=%08x SMAPTYPE %d BASE %08x%08x LEN %08x%08x\n",
73                 v86.efl, v86.eax, smap.type,
74                 (int)(smap.base >> 32), (int)smap.base,
75                 (int)(smap.length >> 32), (int)smap.length);
76 #endif
77         if ((v86.efl & PSL_C) || (v86.eax != SMAPSIG))
78             break;
79         /* look for a low-memory segment that's large enough */
80         if ((smap.type == 1) && (smap.base == 0) && (smap.length >= (512 * 1024))) {
81             bios_basemem = smap.length;
82             bios_howmem = 1;
83         }
84         /* look for the first segment in 'extended' memory */
85         if ((smap.type == 1) && (smap.base == 0x100000)) {
86             bios_extmem = smap.length;
87         }
88     } while (v86.ebx != 0);
89
90     /* Fall back to the old compatibility function for base memory */
91     if (bios_basemem == 0) {
92         v86.ctl = 0;
93         v86.addr = 0x12;                /* int 0x12 */
94         v86int();
95         
96         bios_basemem = (v86.eax & 0xffff) * 1024;
97         bios_howmem = 2;
98     }
99
100     /* Fall back through several compatibility functions for extended memory */
101     if (bios_extmem == 0) {
102         v86.ctl = V86_FLAGS;
103         v86.addr = 0x15;                /* int 0x15 function 0xe801*/
104         v86.eax = 0xe801;
105         v86int();
106         if (!(v86.efl & PSL_C)) {
107             v = ((v86.ecx & 0xffff) +
108                 ((int64_t)(v86.edx & 0xffff) * 64)) * 1024;
109             if (v > 0x40000000)
110                 v = 0x40000000;
111             bios_extmem = v;
112         }
113     }
114     if (bios_extmem == 0) {
115         v86.ctl = 0;
116         v86.addr = 0x15;                /* int 0x15 function 0x88*/
117         v86.eax = 0x8800;
118         v86int();
119         bios_extmem = (v86.eax & 0xffff) * 1024;
120     }
121
122     /*
123      * Set memtop to actual top of memory
124      *
125      * This is broken because the boot loader generally needs more than 16MB
126      * now but the extmem usually calculates to ~14-16MB (which is the fully
127      * segmented limit).  Disk I/O will use bounce buffers.
128      *
129      * Hack it for now.
130      */
131     memtop = 0x100000 + bios_extmem;    /* XXX ignored */
132     memtop = 64 * 1024 * 1024;
133     heapbase = memtop - LOADER_HEAP_SIZE;
134 }    
135