INT 15中断功能

INT 15h, AX=E820h - Query System Address Map


Real mode only.

This call returns a memory map of all the installed RAM, and of physicalmemory ranges reserved by the BIOS. The address map is returned by makingsuccessive calls to this API, each returning one "run" of physical addressinformation. Each run has a type which dictates how this run of physicaladdress range should be treated by the operating system.

If the information returned from INT 15h, AX=E820h in some way differs fromINT 15h, AX=E801h orINT 15h AH=88h,then the information returned from E820hsupersedes what is returned from these older interfaces.This allows the BIOSto return whatever information it wishes to for compatibility reasons.


Input:

	EAX	Function Code	E820h
	EBX	Continuation	Contains the "continuation value" to get the
				next run of physical memory.  This is the
				value returned by a previous call to this
				routine.  If this is the first call, EBX
				must contain zero.
	ES:DI	Buffer Pointer	Pointer to an  Address Range Descriptor
				structure which the BIOS is to fill in.
	ECX	Buffer Size	The length in bytes of the structure passed
				to the BIOS.  The BIOS will fill in at most
				ECX bytes of the structure or however much
				of the structure the BIOS implements.  The
				minimum size which must be supported by both
				the BIOS and the caller is 20 bytes.  Future
				implementations may extend this structure.
	EDX	Signature	'SMAP' -  Used by the BIOS to verify the
				caller is requesting the system map
				information to be returned in ES:DI.
Output:

	CF	Carry Flag	Non-Carry - indicates no error
	EAX	Signature	'SMAP' - Signature to verify correct BIOS
				revision.
	ES:DI	Buffer Pointer	Returned Address Range Descriptor pointer.
				Same value as on input.
	ECX	Buffer Size	Number of bytes returned by the BIOS in the
				address range descriptor.  The minimum size
				structure returned by the BIOS is 20 bytes.
	EBX	Continuation	Contains the continuation value to get the
				next address descriptor.  The actual
				significance of the continuation value is up
				to the discretion of the BIOS.  The caller
				must pass the continuation value unchanged
				as input to the next iteration of the E820
				call in order to get the next Address Range
				Descriptor.  A return value of zero means that
				this is the last descriptor.  Note that the
				BIOS indicate that the last valid descriptor
				has been returned by either returning a zero
				as the continuation value, or by returning
				carry.

Address Range Descriptor Structure

Offset in Bytes		Name		Description
	0	    BaseAddrLow		Low 32 Bits of Base Address
	4	    BaseAddrHigh	High 32 Bits of Base Address
	8	    LengthLow		Low 32 Bits of Length in Bytes
	12	    LengthHigh		High 32 Bits of Length in Bytes
	16	    Type		Address type of  this range.
The BaseAddrLow and BaseAddrHigh together are the 64 bit BaseAddress of this range. The BaseAddressis the physical address of thestart of the range being specified.

The LengthLow and LengthHigh together are the 64 bitLength of this range.TheLength is the physical contiguous length in bytes of a range beingspecified.

The Type field describes the usage of the described address range asdefined in the table below.

Value	Pneumonic		Description
1	AddressRangeMemory	This run is available RAM usable by the
				operating system.
2	AddressRangeReserved	This run of addresses is in use or reserved
				by the system, and must not be used by the
				operating system.
Other	Undefined		Undefined - Reserved for future use.  Any
				range of this type must be treated by the
				OS as if the type returned was
				AddressRangeReserved.
The BIOS can use the AddressRangeReserved address range type to block outvarious addresses as "not suitable" for use by a programmable device.

Some of the reasons a BIOS would do this are:

  • The address range contains system ROM.
  • The address range contains RAM in use by the ROM.
  • The address range is in use by a memory mapped system device.
  • The address range is for whatever reason are unsuitable for astandard device to use as a device memory space.

Assumptions and Limitations

  • 1. The BIOS will return address ranges describing base boardmemory and ISA or PCI memory that is contiguous with that baseboard memory.
  • 2. The BIOS WILL NOT return a range description for the memorymapping of PCI devices, ISA Option ROM's, and ISA plug & play cards. Thisis because the OS has mechanisms available to detect them.
  • 3. The BIOS will return chipset defined address holes that are notbeing used by devices as reserved.
  • 4. Address ranges defined for base board memory mapped I/O devices(for example APICs) will be returned as reserved.
  • 5. All occurrences of the system BIOS will be mapped as reserved.This includes the area below 1 MB, at 16 MB (if present) and atend of the address space (4 gig).
  • 6. Standard PC address ranges will not be reported. Example videomemory at A0000 to BFFFF physical will not be described by thisfunction. The range from E0000 to EFFFF is base board specificand will be reported as suits the bas board.
  • 7. All of lower memory is reported as normal memory. It is OS'sresponsibility to handle standard RAM locations reserved forspecific uses, for example: the interrupt vector table(0:0) andthe BIOS data area(40:0).

Example address map

This sample address map describes a machine which has 128 MB RAM, 640Kof base memory and 127 MB extended. The base memory has 639Kavailable for the user and 1K for an extended BIOS data area. Thereis a 4 MB Linear Frame Buffer (LFB) based at 12 MB. The memory holecreated by the chipset is from 8 M to 16 M. There are memory mappedAPIC devices in the system. The IO Unit is at FEC00000 and the LocalUnit is at FEE00000. The system BIOS is remapped to 4G - 64K.

Note that the 639K endpoint of the first memory range is also the basememory size reported in the BIOS data segment at 40:13.

Key to types: "ARM" is AddressRangeMemory, "ARR" is AddressRangeReserved.

Base (Hex)	Length	Type	Description
0000 0000	639K	ARM	Available Base memory - typically the same
				value as is returned via the INT 12 function.
0009 FC00	1K	ARR	Memory reserved for use by the BIOS(s).
				This area typically includes the Extended
				BIOS data area.
000F 0000	64K	ARR	System BIOS
0010 0000	7M	ARM	Extended memory, this is not limited to
				the 64 MB address range.
0080 0000	8M	ARR	Chipset memory hole required to support the
				LFB mapping at 12 MB.
0100 0000	120M	ARM	Base board RAM relocated above a chipset
				memory hole.
FEC0 0000	4K	ARR	IO APIC memory mapped I/O at FEC00000.  Note
				the range of addresses required for an APIC
				device may vary from base OEM to OEM.
FEE0 0000	4K	ARR	Local APIC memory mapped I/O at FEE00000.
FFFF 0000	64K	ARR	Remapped System BIOS at end of address space.

Sample operating system usage

The following code segment is intended to describe the algorithm needed whencalling the Query System Address Map function. It is an implementationexample and uses non standard mechanisms.

    E820Present = FALSE;
    Regs.ebx = 0;
    do {
        Regs.eax = 0xE820;
        Regs.es  = SEGMENT (&Descriptor);
        Regs.di  = OFFSET  (&Descriptor);
        Regs.ecx = sizeof  (Descriptor);
	Regs.edx = 'SMAP';

        _int( 0x15, Regs );

        if ((Regs.eflags & EFLAG_CARRY)  ||  Regs.eax != 'SMAP') {
            break;
        }

        if (Regs.ecx < 20  ||  Regs.ecx > sizeof (Descriptor) ) {
            // bug in bios - all returned descriptors must be
            // at least 20 bytes long, and can not be larger then
            // the input buffer.

            break;
        }

	E820Present = TRUE;
	.
        .
        .
        Add address range Descriptor.BaseAddress through
        Descriptor.BaseAddress + Descriptor.Length
        as type Descriptor.Type
	.
        .
        .

    } while (Regs.ebx != 0);

    if (!E820Present) {
	.
        .
        .
	call INT 15h, AX=E801h and/or INT 15h, AH=88h to obtain old style
	memory information
	.
        .
        .
    }

INT 15h, AX=E801h - Get Memory Size forLarge Configurations


Real mode only (as far as I know).

Originally defined for EISA servers, this interface is capable ofreporting up to 4 GB of RAM. While not nearly as flexible as E820h, itis present in many more systems.

Input:

	AX	Function Code	E801h
Output:

	CF	Carry Flag	Non-Carry - indicates no error
	AX	Extended 1	Number of contiguous KB between 1 and 16 MB,
				maximum 0x3C00 = 15 MB.
	BX	Extended 2	Number of contiguous 64 KB blocks between
				16 MB and 4 GB.
	CX	Configured 1	Number of contiguous KB between 1 and 16 MB,
				maximum 0x3C00 = 15 MB.
	DX	Configured 2	Number of contiguous 64 KB blocks between
				16 MB and 4 GB.
Not sure what this difference between the "Extended" and "Configured"numbers are, but they appear to be identical, as reported from the BIOS.

NOTE: It is possible for a machine using this interface to report a memoryhole just under 16 MB (Count 1 is less than 15 MB, but Count 2 isnon-zero).


INT 15h, AH=88h - Get Extended Memory Size


Real mode only.

This interface is quite primitive. It returns a single value forcontiguous memory above 1 MB. The biggestlimitation is that the value returned is a 16-bit value, in KB,so it has a maximum saturation of just under 64 MB even presumingit returns as much as it can. On some systems, it won't returnanything above the 16 MB boundary.

The one useful point is that it works on every PC available.

Input:

	AH	Function Code	88h
Output:

	CF	Carry Flag	Non-Carry - indicates no error
	AX	Memory Count	Number of contiguous KB above 1 MB.

  • 4
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值