2 * DOS upper memory management.
4 * Copyright 2002 Jukka Heinonen
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "wine/debug.h"
24 WINE_DEFAULT_DEBUG_CHANNEL(dosmem);
27 * Wine DOS memory layout above 640k:
29 * a0000 - affff : VGA graphics (vga.c)
30 * b0000 - bffff : Monochrome text (unused)
31 * b8000 - bffff : VGA text (vga.c)
32 * c0000 - cffff : EMS frame (int67.c)
33 * d0000 - effff : Free memory for UMBs (himem.c)
34 * f0000 - fffff : BIOS stuff (msdos/dosmem.c)
35 * 100000 -10ffff : High memory area (unused)
39 * Table of real mode segments and protected mode selectors
40 * for code stubs and other miscellaneous storage.
42 struct DPMI_segments *DOSVM_dpmi_segments = NULL;
45 * First and last address available for upper memory blocks.
47 #define DOSVM_UMB_BOTTOM 0xd0000
48 #define DOSVM_UMB_TOP 0xeffff
51 * First free address for upper memory blocks.
53 static DWORD DOSVM_umb_free = DOSVM_UMB_BOTTOM;
56 /***********************************************************************
59 * Allocate upper memory block (UMB) from upper memory.
60 * Returned pointer is aligned to 16-byte (paragraph) boundary.
62 * This routine is only for allocating static storage for
63 * Wine internal uses. Allocated memory can be accessed from
64 * real mode, memory is taken from area already mapped and reserved
65 * by Wine and the allocation has very little memory and speed
66 * overhead. Use of this routine also preserves precious DOS
67 * conventional memory.
69 LPVOID DOSVM_AllocUMB( DWORD size )
71 LPVOID ptr = (LPVOID)DOSVM_umb_free;
73 size = ((size + 15) >> 4) << 4;
75 if(DOSVM_umb_free + size - 1 > DOSVM_UMB_TOP) {
76 ERR("Out of upper memory area.\n");
80 DOSVM_umb_free += size;
85 /***********************************************************************
88 * Allocate upper memory block for storing code stubs.
89 * Initializes real mode segment and 16-bit protected mode selector
90 * for the allocated code block.
92 LPVOID DOSVM_AllocCodeUMB( DWORD size, WORD *segment, WORD *selector )
94 LPVOID ptr = DOSVM_AllocUMB( size );
97 *segment = (DWORD)ptr >> 4;
100 *selector = SELECTOR_AllocBlock( ptr, size, WINE_LDT_FLAGS_CODE );
106 /***********************************************************************
109 * Allocate upper memory block for storing data.
110 * Initializes real mode segment and 16-bit protected mode selector
111 * for the allocated data block.
113 LPVOID DOSVM_AllocDataUMB( DWORD size, WORD *segment, WORD *selector )
115 LPVOID ptr = DOSVM_AllocUMB( size );
118 *segment = (DWORD)ptr >> 4;
121 *selector = SELECTOR_AllocBlock( ptr, size, WINE_LDT_FLAGS_DATA );
127 /***********************************************************************
130 * Initializes DOSVM_dpmi_segments. Allocates required memory and
131 * sets up segments and selectors for accessing the memory.
133 void DOSVM_InitSegments( void )
138 static const char wrap_code[]={
139 0xCD,0x31, /* int $0x31 */
143 static const char enter_xms[]=
145 /* XMS hookable entry point */
146 0xEB,0x03, /* jmp entry */
147 0x90,0x90,0x90, /* nop;nop;nop */
149 /* real entry point */
150 /* for simplicity, we'll just use the same hook as DPMI below */
151 0xCD,0x31, /* int $0x31 */
155 static const char enter_pm[]=
157 0x50, /* pushw %ax */
158 0x52, /* pushw %dx */
159 0x55, /* pushw %bp */
160 0x89,0xE5, /* movw %sp,%bp */
162 0x8B,0x56,0x08, /* movw 8(%bp),%dx */
163 /* just call int 31 here to get into protected mode... */
164 /* it'll check whether it was called from dpmi_seg... */
165 0xCD,0x31, /* int $0x31 */
166 /* we are now in the context of a 16-bit relay call */
167 /* need to fixup our stack;
168 * 16-bit relay return address will be lost,
169 * but we won't worry quite yet
171 0x8E,0xD0, /* movw %ax,%ss */
172 0x66,0x0F,0xB7,0xE5, /* movzwl %bp,%esp */
174 0x89,0x56,0x08, /* movw %dx,8(%bp) */
181 static const char relay[]=
183 0xca, 0x04, 0x00, /* 16-bit far return and pop 4 bytes (relay void* arg) */
184 0xcd, 0x31 /* int 31 */
188 * Allocate pointer array.
190 DOSVM_dpmi_segments = DOSVM_AllocUMB( sizeof(struct DPMI_segments) );
193 * RM / offset 0: Exit from real mode.
194 * RM / offset 2: Points to lret opcode.
196 ptr = DOSVM_AllocCodeUMB( sizeof(wrap_code),
197 &DOSVM_dpmi_segments->wrap_seg, 0 );
198 memcpy( ptr, wrap_code, sizeof(wrap_code) );
201 * RM / offset 0: XMS driver entry.
203 ptr = DOSVM_AllocCodeUMB( sizeof(enter_xms),
204 &DOSVM_dpmi_segments->xms_seg, 0 );
205 memcpy( ptr, enter_xms, sizeof(enter_xms) );
208 * RM / offset 0: Switch to DPMI.
209 * PM / offset 8: DPMI raw mode switch.
211 ptr = DOSVM_AllocCodeUMB( sizeof(enter_pm),
212 &DOSVM_dpmi_segments->dpmi_seg,
213 &DOSVM_dpmi_segments->dpmi_sel );
214 memcpy( ptr, enter_pm, sizeof(enter_pm) );
217 * PM / offset N*6: Interrupt N in DPMI32.
219 ptr = DOSVM_AllocCodeUMB( 6 * 256,
220 0, &DOSVM_dpmi_segments->int48_sel );
221 for(i=0; i<256; i++) {
223 * Each 32-bit interrupt handler is 6 bytes:
224 * 0xCD,<i> = int <i> (nested 16-bit interrupt)
225 * 0x66,0xCA,0x04,0x00 = ret 4 (32-bit far return and pop 4 bytes / eflags)
227 ptr[i * 6 + 0] = 0xCD;
229 ptr[i * 6 + 2] = 0x66;
230 ptr[i * 6 + 3] = 0xCA;
231 ptr[i * 6 + 4] = 0x04;
232 ptr[i * 6 + 5] = 0x00;
236 * PM / offset N*5: Interrupt N in 16-bit protected mode.
238 ptr = DOSVM_AllocCodeUMB( 5 * 256,
239 0, &DOSVM_dpmi_segments->int16_sel );
240 for(i=0; i<256; i++) {
242 * Each 16-bit interrupt handler is 5 bytes:
243 * 0xCD,<i> = int <i> (interrupt)
244 * 0xCA,0x02,0x00 = ret 2 (16-bit far return and pop 2 bytes / eflags)
246 ptr[i * 5 + 0] = 0xCD;
248 ptr[i * 5 + 2] = 0xCA;
249 ptr[i * 5 + 3] = 0x02;
250 ptr[i * 5 + 4] = 0x00;
254 * PM / offset 0: Stub where __wine_call_from_16_regs returns.
255 * PM / offset 3: Stub which swaps back to 32-bit application code/stack.
257 ptr = DOSVM_AllocCodeUMB( sizeof(relay),
258 0, &DOSVM_dpmi_segments->relay_code_sel);
259 memcpy( ptr, relay, sizeof(relay) );
262 * Space for 16-bit stack used by relay code.
264 ptr = DOSVM_AllocDataUMB( DOSVM_RELAY_DATA_SIZE,
265 0, &DOSVM_dpmi_segments->relay_data_sel);
266 memset( ptr, 0, DOSVM_RELAY_DATA_SIZE );