2001-03-21 04:01:45 +01:00
|
|
|
/****************************************************************/
|
|
|
|
/* */
|
|
|
|
/* initHMA.c */
|
|
|
|
/* DOS-C */
|
|
|
|
/* */
|
|
|
|
/* move kernel to HMA area */
|
|
|
|
/* */
|
|
|
|
/* Copyright (c) 2001 */
|
|
|
|
/* tom ehlert */
|
|
|
|
/* All Rights Reserved */
|
|
|
|
/* */
|
|
|
|
/* This file is part of DOS-C. */
|
|
|
|
/* */
|
|
|
|
/* DOS-C is free software; you can redistribute it and/or */
|
|
|
|
/* modify it under the terms of the GNU General Public License */
|
|
|
|
/* as published by the Free Software Foundation; either version */
|
|
|
|
/* 2, or (at your option) any later version. */
|
|
|
|
/* */
|
|
|
|
/* DOS-C is distributed in the hope that it will be useful, but */
|
|
|
|
/* WITHOUT ANY WARRANTY; without even the implied warranty of */
|
|
|
|
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See */
|
|
|
|
/* the GNU General Public License for more details. */
|
|
|
|
/* */
|
|
|
|
/* You should have received a copy of the GNU General Public */
|
|
|
|
/* License along with DOS-C; see the file COPYING. If not, */
|
|
|
|
/* write to the Free Software Foundation, 675 Mass Ave, */
|
|
|
|
/* Cambridge, MA 02139, USA. */
|
|
|
|
/****************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
current status:
|
|
|
|
|
|
|
|
load FreeDOS high, if DOS=HIGH detected
|
|
|
|
|
|
|
|
suppress High Loading, if any SHIFT status detected (for debugging)
|
|
|
|
|
|
|
|
if no XMS driver (HIMEM,FDXMS,...) loaded, should work
|
|
|
|
|
|
|
|
cooperation with XMS drivers as follows:
|
|
|
|
|
|
|
|
copy HMA_TEXT segment up.
|
|
|
|
|
|
|
|
after each loaded DEVICE=SOMETHING.SYS, try to request the HMA
|
|
|
|
(XMS function 0x01).
|
|
|
|
if no XMS driver detected, during ONFIG.SYS processing,
|
|
|
|
create a dummy VDISK entry in high memory
|
|
|
|
|
|
|
|
this works with
|
|
|
|
|
|
|
|
FD FDXMS - no problems detected
|
|
|
|
|
|
|
|
|
|
|
|
MS HIMEM.SYS (from DOS 6.2, 9-30-93)
|
|
|
|
|
|
|
|
works if and only if
|
|
|
|
|
|
|
|
/TESTMEM:OFF
|
|
|
|
|
|
|
|
is given
|
|
|
|
|
|
|
|
otherwise HIMEM will TEST AND ZERO THE HIGH MEMORY+HMA.
|
|
|
|
so, in CONFIG.C, if "HIMEM.SYS" is detected, a "/TESTMEM:OFF"
|
|
|
|
parameter is forced.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2001-04-22 00:32:53 +02:00
|
|
|
#include "portab.h"
|
2001-03-21 04:01:45 +01:00
|
|
|
#include "init-mod.h"
|
|
|
|
|
2001-04-22 00:32:53 +02:00
|
|
|
extern BYTE FAR version_flags; /* minor version number */
|
|
|
|
|
|
|
|
extern BYTE
|
|
|
|
FAR _HMATextAvailable, /* first byte of available CODE area */
|
|
|
|
FAR _HMATextStart[], /* first byte of HMAable CODE area */
|
|
|
|
FAR _HMATextEnd[]; /* and the last byte of it */
|
2001-03-21 04:01:45 +01:00
|
|
|
|
|
|
|
#ifdef VERSION_STRINGS
|
|
|
|
static BYTE *RcsId = "$Id$";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* $Log$
|
2001-04-29 19:34:41 +02:00
|
|
|
* Revision 1.6 2001/04/29 17:34:40 bartoldeman
|
|
|
|
* A new SYS.COM/config.sys single stepping/console output/misc fixes.
|
|
|
|
*
|
2001-04-22 00:32:53 +02:00
|
|
|
* Revision 1.5 2001/04/21 22:32:53 bartoldeman
|
|
|
|
* Init DS=Init CS, fixed stack overflow problems and misc bugs.
|
|
|
|
*
|
2001-04-16 03:45:26 +02:00
|
|
|
* Revision 1.4 2001/04/16 01:45:26 bartoldeman
|
|
|
|
* Fixed handles, config.sys drivers, warnings. Enabled INT21/AH=6C, printf %S/%Fs
|
|
|
|
*
|
2001-04-15 05:21:50 +02:00
|
|
|
* Revision 1.3 2001/04/15 03:21:50 bartoldeman
|
|
|
|
* See history.txt for the list of fixes.
|
|
|
|
*
|
2001-03-30 21:30:06 +02:00
|
|
|
* Revision 1.2 2001/03/30 19:30:06 bartoldeman
|
|
|
|
* Misc fixes and implementation of SHELLHIGH. See history.txt for details.
|
|
|
|
*
|
2001-03-21 04:01:45 +01:00
|
|
|
* Revision 1.1 2001/03/21 03:01:45 bartoldeman
|
|
|
|
* New file by Tom Ehlert for HMA initialization.
|
|
|
|
*
|
|
|
|
* Revision 0.1 2001/03/16 12:00:00 tom ehlert
|
|
|
|
* initial creation
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2001-04-22 00:32:53 +02:00
|
|
|
BYTE DosLoadedInHMA=FALSE; /* set to TRUE if loaded HIGH */
|
|
|
|
BYTE HMAclaimed=FALSE; /* set to TRUE if claimed from HIMEM */
|
2001-03-21 04:01:45 +01:00
|
|
|
WORD HMAFree; /* first byte in HMA not yet used */
|
|
|
|
|
|
|
|
|
|
|
|
extern BYTE FAR * FAR XMSDriverAddress;
|
2001-04-15 05:21:50 +02:00
|
|
|
extern FAR _EnableA20(VOID);
|
|
|
|
extern FAR _DisableA20(VOID);
|
2001-03-21 04:01:45 +01:00
|
|
|
|
|
|
|
|
2001-04-15 05:21:50 +02:00
|
|
|
extern void FAR *DetectXMSDriver(VOID);
|
2001-03-21 04:01:45 +01:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
#define int3() __int__(3);
|
|
|
|
#else
|
|
|
|
#define int3()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2001-04-15 05:21:50 +02:00
|
|
|
#ifdef DEBUG
|
2001-03-21 04:01:45 +01:00
|
|
|
#define HMAInitPrintf(x) printf x
|
|
|
|
#else
|
|
|
|
#define HMAInitPrintf(x)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2001-04-16 03:45:26 +02:00
|
|
|
VOID hdump(BYTE FAR *p)
|
2001-03-21 04:01:45 +01:00
|
|
|
{
|
|
|
|
int loop;
|
|
|
|
HMAInitPrintf(("%p", p));
|
|
|
|
|
|
|
|
for (loop = 0; loop < 16; loop++)
|
|
|
|
HMAInitPrintf(("%02x ", p[loop]));
|
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define hdump(ptr)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __TURBOC__
|
|
|
|
void __int__(int); /* TC 2.01 requires this. :( -- ror4 */
|
|
|
|
unsigned char __inportb__(int portid);
|
|
|
|
void __outportb__ (int portid, unsigned char value);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define KeyboardShiftState() (*(BYTE FAR *)(MK_FP(0x40,0x17)))
|
|
|
|
|
|
|
|
|
|
|
|
/* of course, this should go to ASMSUPT */
|
|
|
|
fmemcmp(BYTE far *s1, BYTE FAR *s2, unsigned len)
|
|
|
|
{
|
|
|
|
for ( ; len ; s1++,s2++,--len)
|
|
|
|
{
|
|
|
|
if (*s1 - *s2)
|
|
|
|
return *s1-*s2;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Enable / Disable borrowed without understanding from FDXMS. Thanks.
|
|
|
|
gone done to KERNEL.ASM
|
|
|
|
|
|
|
|
OutportWithDelay(WORD port, BYTE val)
|
|
|
|
{
|
|
|
|
int loop;
|
|
|
|
|
|
|
|
__outportb__(port,val);
|
|
|
|
|
|
|
|
for (loop = 100; --loop && __inportb__(0x64) & 0x02;)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void _EnableHMA()
|
|
|
|
{
|
|
|
|
OutportWithDelay(0x64, 0xd1);
|
|
|
|
OutportWithDelay(0x60, 0xdf);
|
|
|
|
OutportWithDelay(0x64, 0xff);
|
|
|
|
}
|
|
|
|
void _DisableHMA()
|
|
|
|
{
|
|
|
|
OutportWithDelay(0x64, 0xd1);
|
|
|
|
OutportWithDelay(0x60, 0xdd);
|
|
|
|
OutportWithDelay(0x64, 0xff);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
this tests, if the HMA area can be enabled.
|
|
|
|
if so, it simply leaves it on
|
|
|
|
*/
|
|
|
|
|
2001-04-15 05:21:50 +02:00
|
|
|
int EnableHMA(VOID)
|
2001-03-21 04:01:45 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
_EnableA20();
|
|
|
|
|
|
|
|
if (fmemcmp(MK_FP(0x0000,0x0000), MK_FP(0xffff,0x0010),128) == 0)
|
|
|
|
{
|
|
|
|
printf("HMA can't be enabled\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_DisableA20();
|
|
|
|
|
|
|
|
if (fmemcmp(MK_FP(0x0000,0x0000), MK_FP(0xffff,0x0010),128) != 0)
|
|
|
|
{
|
|
|
|
printf("HMA can't be disabled - no problem for us\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
_EnableA20();
|
|
|
|
if (fmemcmp(MK_FP(0x0000,0x0000), MK_FP(0xffff,0x0010),128) == 0)
|
|
|
|
{
|
|
|
|
printf("HMA can't be enabled second time\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
HMAInitPrintf(("HMA success - leaving enabled\n"));
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
move the kernel up to high memory
|
|
|
|
this is very unportable
|
|
|
|
|
|
|
|
if we thin we succeeded, we return TRUE, else FALSE
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define HMAOFFSET 0x20
|
|
|
|
#define HMASEGMENT 0xffff
|
|
|
|
|
|
|
|
|
|
|
|
int MoveKernelToHMA()
|
|
|
|
{
|
|
|
|
UBYTE FAR *HMASource;
|
|
|
|
unsigned len;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (DosLoadedInHMA)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
{ /* is very improbable - we are just booting - but
|
|
|
|
there might already a XMS handler installed
|
|
|
|
this is the case for DOSEMU
|
|
|
|
*/
|
|
|
|
|
|
|
|
void FAR *pXMS = DetectXMSDriver();
|
|
|
|
|
|
|
|
if (pXMS != NULL)
|
|
|
|
{
|
|
|
|
XMSDriverAddress = pXMS;
|
|
|
|
|
|
|
|
printf("DOSEMU ? detected XMS driver at %p\n", XMSDriverAddress);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* A) for debugging purpose, suppress this,
|
|
|
|
if any shift key is pressed
|
|
|
|
*/
|
2001-04-15 05:21:50 +02:00
|
|
|
#ifdef DEBUG
|
2001-03-21 04:01:45 +01:00
|
|
|
if (KeyboardShiftState() & 0x0f)
|
|
|
|
{
|
|
|
|
printf("Keyboard state is %0x, NOT moving to HMA\n",KeyboardShiftState());
|
|
|
|
return FALSE;
|
|
|
|
}
|
2001-04-15 05:21:50 +02:00
|
|
|
#endif
|
2001-03-21 04:01:45 +01:00
|
|
|
|
|
|
|
/* B) check out, if we can have HMA */
|
|
|
|
|
|
|
|
if (!EnableHMA())
|
|
|
|
{
|
|
|
|
printf("Can't enable HMA area (the famous A20), NOT moving to HMA\n");
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* C) we have HMA, copy HMA_TEXT up to 0xffff:0..ffff */
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
UBYTE FAR *HMADest = MK_FP(HMASEGMENT,0x0000);
|
|
|
|
|
|
|
|
len = FP_OFF(_HMATextEnd) - FP_OFF(_HMATextStart);
|
|
|
|
|
2001-04-15 05:21:50 +02:00
|
|
|
HMASource = (UBYTE FAR *)_HMATextStart;
|
2001-03-21 04:01:45 +01:00
|
|
|
|
|
|
|
|
|
|
|
len += FP_OFF(HMASource) & 0x000f;
|
|
|
|
|
|
|
|
FP_OFF(HMASource) &= 0xfff0;
|
|
|
|
|
|
|
|
HMASource += HMAOFFSET;
|
|
|
|
HMADest += HMAOFFSET;
|
|
|
|
len -= HMAOFFSET;
|
|
|
|
|
|
|
|
|
|
|
|
HMAInitPrintf(("HMA moving %p up to %p for %04x bytes\n",
|
|
|
|
HMASource, HMADest, len));
|
|
|
|
|
|
|
|
fmemcpy(HMADest, HMASource, len);
|
|
|
|
|
|
|
|
HMAFree = FP_OFF(HMADest)+len; /* first free byte after HMA_TEXT */
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
{
|
|
|
|
/* D) but it only makes sense, if we can relocate
|
|
|
|
all our entries to make use of HMA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* this is for a
|
|
|
|
call near enableA20
|
|
|
|
jmp far kernelentry
|
|
|
|
style table
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct RelocationTable {
|
|
|
|
UBYTE jmpFar;
|
|
|
|
UWORD jmpOffset;
|
|
|
|
UWORD jmpSegment;
|
|
|
|
UBYTE callNear;
|
|
|
|
UWORD callOffset;
|
|
|
|
};
|
|
|
|
struct RelocatedEntry {
|
|
|
|
UBYTE callNear;
|
|
|
|
UWORD callOffset;
|
|
|
|
UBYTE jmpFar;
|
|
|
|
UWORD jmpOffset;
|
|
|
|
UWORD jmpSegment;
|
|
|
|
};
|
|
|
|
extern struct RelocationTable
|
|
|
|
FAR _HMARelocationTableStart[],
|
|
|
|
FAR _HMARelocationTableEnd[];
|
|
|
|
|
|
|
|
struct RelocationTable FAR *rp, rtemp ;
|
|
|
|
|
|
|
|
UWORD HMATextSegment = FP_SEG( _HMATextStart );
|
|
|
|
|
|
|
|
/* verify, that all entries are valid */
|
|
|
|
|
|
|
|
for (rp = _HMARelocationTableStart; rp < _HMARelocationTableEnd; rp++)
|
|
|
|
{
|
|
|
|
if (rp->jmpFar != 0xea || /* jmp FAR */
|
|
|
|
rp->jmpSegment != HMATextSegment || /* will only relocate HMA_TEXT */
|
|
|
|
rp->callNear != 0xe8 || /* call NEAR */
|
|
|
|
0)
|
|
|
|
{
|
|
|
|
printf("illegal relocation entry # %d\n",rp - _HMARelocationTableStart);
|
|
|
|
goto errorReturn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* OK, all valid, go to relocate*/
|
|
|
|
|
|
|
|
for (rp = _HMARelocationTableStart; rp < _HMARelocationTableEnd; rp++)
|
|
|
|
{
|
|
|
|
struct RelocatedEntry FAR *rel = (struct RelocatedEntry FAR *)rp;
|
|
|
|
|
|
|
|
fmemcpy(&rtemp, rp, sizeof(rtemp));
|
|
|
|
|
|
|
|
rel->jmpFar = rtemp.jmpFar;
|
|
|
|
rel->jmpSegment = HMASEGMENT;
|
|
|
|
rel->jmpOffset = rtemp.jmpOffset;
|
|
|
|
rel->callNear = rtemp.callNear;
|
|
|
|
rel->callOffset = rtemp.callOffset+5; /* near calls are relative */
|
|
|
|
}
|
2001-04-15 05:21:50 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
struct initRelocationTable {
|
|
|
|
UBYTE callNear;
|
|
|
|
UWORD callOffset;
|
|
|
|
UBYTE jmpFar;
|
|
|
|
UWORD jmpOffset;
|
|
|
|
UWORD jmpSegment;
|
|
|
|
};
|
|
|
|
extern struct initRelocationTable
|
2001-04-22 00:32:53 +02:00
|
|
|
_HMAinitRelocationTableStart[],
|
|
|
|
_HMAinitRelocationTableEnd[];
|
|
|
|
struct initRelocationTable *rp;
|
2001-04-15 05:21:50 +02:00
|
|
|
|
|
|
|
/* verify, that all entries are valid */
|
|
|
|
|
|
|
|
UWORD HMATextSegment = FP_SEG( _HMATextStart );
|
2001-03-21 04:01:45 +01:00
|
|
|
|
2001-04-22 00:32:53 +02:00
|
|
|
for (rp = _HMAinitRelocationTableStart; rp < _HMAinitRelocationTableEnd; rp++)
|
2001-04-15 05:21:50 +02:00
|
|
|
{
|
|
|
|
if (
|
|
|
|
rp->callNear != 0xe8 || /* call NEAR */
|
|
|
|
rp->jmpFar != 0xea || /* jmp FAR */
|
|
|
|
rp->jmpSegment != HMATextSegment || /* will only relocate HMA_TEXT */
|
|
|
|
0)
|
|
|
|
{
|
|
|
|
printf("illegal init relocation entry # %d\n",
|
2001-04-22 00:32:53 +02:00
|
|
|
rp - _HMAinitRelocationTableStart);
|
2001-04-15 05:21:50 +02:00
|
|
|
goto errorReturn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* OK, all valid, go to relocate*/
|
|
|
|
|
2001-04-22 00:32:53 +02:00
|
|
|
for (rp = _HMAinitRelocationTableStart; rp < _HMAinitRelocationTableEnd; rp++)
|
2001-04-15 05:21:50 +02:00
|
|
|
{
|
|
|
|
rp->jmpSegment = HMASEGMENT;
|
|
|
|
rp->callOffset = rp->callOffset-5; /* near calls are relative */
|
|
|
|
}
|
2001-03-21 04:01:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
/* E) up to now, nothing really bad was done.
|
|
|
|
but now, we reuse the HMA area. bad things will happen
|
|
|
|
|
|
|
|
to find bugs early,
|
|
|
|
cause INT 3 on all accesses to this area
|
|
|
|
*/
|
|
|
|
|
|
|
|
fmemset(HMASource, 0xcc, len);
|
|
|
|
HMAInitPrintf(("HMA text segment filled with INT 3\n"));
|
|
|
|
|
|
|
|
DosLoadedInHMA = TRUE;
|
|
|
|
}
|
2001-03-30 21:30:06 +02:00
|
|
|
|
|
|
|
/* report the fact we are running high thorugh int 21, ax=3306 */
|
|
|
|
version_flags |= 0x10;
|
|
|
|
|
2001-03-21 04:01:45 +01:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
errorReturn:
|
|
|
|
printf("HMA errors, not doing HMA\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
now protect against HIMEM/FDXMS/... by simulating a VDISK
|
|
|
|
FDXMS should detect us and not give HMA access to ohers
|
|
|
|
unfortunately this also disables HIMEM completely
|
|
|
|
|
|
|
|
so: we install this after all drivers have been loaded
|
|
|
|
*/
|
2001-04-15 05:21:50 +02:00
|
|
|
void InstallVDISK(VOID)
|
2001-03-21 04:01:45 +01:00
|
|
|
{
|
|
|
|
static struct { /* Boot-Sektor of a RAM-Disk */
|
2001-03-30 21:30:06 +02:00
|
|
|
UBYTE dummy1[3]; /* HIMEM.SYS uses 3, but FDXMS uses 2 */
|
2001-03-21 04:01:45 +01:00
|
|
|
char Name[5];
|
|
|
|
BYTE dummy2[3];
|
|
|
|
WORD BpS;
|
|
|
|
BYTE dummy3[6];
|
|
|
|
WORD Sektoren;
|
|
|
|
BYTE dummy4;
|
|
|
|
} VDISK_BOOT_SEKTOR =
|
|
|
|
{
|
|
|
|
{ 0xcf, ' ', ' '},
|
|
|
|
{ 'V', 'D', 'I', 'S', 'K'},
|
|
|
|
{ ' ', ' ', ' '},
|
|
|
|
512,
|
|
|
|
{ 'F', 'D', 'O', 'S', ' ', ' '},
|
|
|
|
128, /* 128*512 = 64K */
|
|
|
|
' '
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!DosLoadedInHMA) return;
|
|
|
|
if (HMAclaimed) return;
|
|
|
|
|
|
|
|
|
|
|
|
fmemcpy(MK_FP(0xffff,0x0010), &VDISK_BOOT_SEKTOR, sizeof(VDISK_BOOT_SEKTOR));
|
|
|
|
|
|
|
|
setvec(0x19, MK_FP(0xffff,0x0010)); /* let INT 19 point to VDISK */
|
|
|
|
|
2001-04-29 19:34:41 +02:00
|
|
|
*(WORD FAR *)MK_FP(0xffff,0x002e) = 1024+64;
|
2001-03-21 04:01:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int init_call_XMScall( void FAR * driverAddress, UWORD ax, UWORD dx);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
after each driver, we try to allocate the HMA.
|
|
|
|
it might be HIMEM.SYS we just loaded.
|
|
|
|
*/
|
|
|
|
|
2001-04-15 05:21:50 +02:00
|
|
|
void ClaimHMA(VOID)
|
2001-03-21 04:01:45 +01:00
|
|
|
{
|
|
|
|
void FAR *pXMS;
|
|
|
|
|
|
|
|
if (!DosLoadedInHMA) return;
|
|
|
|
if (HMAclaimed) return;
|
|
|
|
|
|
|
|
|
|
|
|
pXMS = DetectXMSDriver();
|
|
|
|
|
|
|
|
if (pXMS != NULL)
|
|
|
|
{
|
|
|
|
XMSDriverAddress = pXMS;
|
|
|
|
|
|
|
|
if (init_call_XMScall( pXMS, 0x0100, 0xffff))
|
|
|
|
{
|
|
|
|
printf("HMA area successfully claimed\n");
|
|
|
|
HMAclaimed = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
this should be called, after each device driver
|
|
|
|
has been loaded with FALSE
|
|
|
|
and on finished CONFIG processing with TRUE.
|
|
|
|
|
|
|
|
will try to grab HMA;
|
|
|
|
|
|
|
|
on finalize, will install a VDISK
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void HMAconfig(int finalize)
|
|
|
|
{
|
|
|
|
ClaimHMA();
|
|
|
|
|
|
|
|
if (finalize)
|
|
|
|
InstallVDISK();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
this allocates some bytes from the HMA area
|
|
|
|
only available if DOS=HIGH was successful
|
|
|
|
*/
|
|
|
|
|
|
|
|
VOID FAR *HMAalloc(COUNT bytesToAllocate)
|
|
|
|
{
|
|
|
|
VOID FAR *HMAptr;
|
|
|
|
|
|
|
|
if (!DosLoadedInHMA) return NULL;
|
|
|
|
|
|
|
|
if (HMAFree >= 0xfff0 - bytesToAllocate) return NULL;
|
|
|
|
|
|
|
|
HMAptr = MK_FP(0xffff, HMAFree);
|
|
|
|
|
|
|
|
HMAFree += bytesToAllocate;
|
|
|
|
|
|
|
|
/*printf("HMA allocated %d byte at %x\n", bytesToAllocate, HMAptr); */
|
|
|
|
|
2001-03-30 21:30:06 +02:00
|
|
|
fmemset( HMAptr,0, bytesToAllocate);
|
|
|
|
|
2001-03-21 04:01:45 +01:00
|
|
|
return HMAptr;
|
|
|
|
}
|
|
|
|
|