2008-05-21 03:40:12 +02:00
|
|
|
/** @file
|
2008-04-09 09:07:50 +02:00
|
|
|
Data structure and functions to allocate and free memory space.
|
2007-07-04 12:51:54 +02:00
|
|
|
|
2010-04-24 11:49:11 +02:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2008-05-21 03:40:12 +02:00
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
2007-07-04 12:51:54 +02:00
|
|
|
|
2008-05-21 03:40:12 +02:00
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2008-05-09 09:08:30 +02:00
|
|
|
|
|
|
|
**/
|
2007-07-04 12:51:54 +02:00
|
|
|
|
|
|
|
#ifndef _IMEM_H_
|
|
|
|
#define _IMEM_H_
|
|
|
|
|
|
|
|
#if defined (MDE_CPU_IPF)
|
2008-09-23 09:35:34 +02:00
|
|
|
///
|
|
|
|
/// For Itanium machines make the default allocations 8K aligned
|
|
|
|
///
|
2007-07-04 12:51:54 +02:00
|
|
|
#define EFI_ACPI_RUNTIME_PAGE_ALLOCATION_ALIGNMENT (EFI_PAGE_SIZE * 2)
|
|
|
|
#define DEFAULT_PAGE_ALLOCATION (EFI_PAGE_SIZE * 2)
|
|
|
|
|
|
|
|
#else
|
2008-09-23 09:35:34 +02:00
|
|
|
///
|
|
|
|
/// For genric EFI machines make the default allocations 4K aligned
|
|
|
|
///
|
2007-07-04 12:51:54 +02:00
|
|
|
#define EFI_ACPI_RUNTIME_PAGE_ALLOCATION_ALIGNMENT (EFI_PAGE_SIZE)
|
|
|
|
#define DEFAULT_PAGE_ALLOCATION (EFI_PAGE_SIZE)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// MEMORY_MAP_ENTRY
|
|
|
|
//
|
|
|
|
|
2008-12-16 16:34:21 +01:00
|
|
|
#define MEMORY_MAP_SIGNATURE SIGNATURE_32('m','m','a','p')
|
2007-07-04 12:51:54 +02:00
|
|
|
typedef struct {
|
|
|
|
UINTN Signature;
|
|
|
|
LIST_ENTRY Link;
|
|
|
|
BOOLEAN FromPages;
|
|
|
|
|
|
|
|
EFI_MEMORY_TYPE Type;
|
|
|
|
UINT64 Start;
|
|
|
|
UINT64 End;
|
|
|
|
|
|
|
|
UINT64 VirtualStart;
|
|
|
|
UINT64 Attribute;
|
|
|
|
} MEMORY_MAP;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Internal prototypes
|
|
|
|
//
|
|
|
|
|
|
|
|
|
2008-05-09 09:08:30 +02:00
|
|
|
/**
|
2007-07-04 12:51:54 +02:00
|
|
|
Internal function. Used by the pool functions to allocate pages
|
|
|
|
to back pool allocation requests.
|
|
|
|
|
2008-07-24 04:54:45 +02:00
|
|
|
@param PoolType The type of memory for the new pool pages
|
|
|
|
@param NumberOfPages No of pages to allocate
|
|
|
|
@param Alignment Bits to align.
|
2007-07-04 12:51:54 +02:00
|
|
|
|
2008-05-09 09:08:30 +02:00
|
|
|
@return The allocated memory, or NULL
|
2007-07-04 12:51:54 +02:00
|
|
|
|
2008-05-09 09:08:30 +02:00
|
|
|
**/
|
|
|
|
VOID *
|
|
|
|
CoreAllocatePoolPages (
|
2008-05-21 03:40:12 +02:00
|
|
|
IN EFI_MEMORY_TYPE PoolType,
|
|
|
|
IN UINTN NumberOfPages,
|
|
|
|
IN UINTN Alignment
|
|
|
|
);
|
2007-07-04 12:51:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2008-05-09 09:08:30 +02:00
|
|
|
/**
|
|
|
|
Internal function. Frees pool pages allocated via AllocatePoolPages ()
|
2007-07-04 12:51:54 +02:00
|
|
|
|
2008-07-24 04:54:45 +02:00
|
|
|
@param Memory The base address to free
|
2008-05-09 09:08:30 +02:00
|
|
|
@param NumberOfPages The number of pages to free
|
2007-07-04 12:51:54 +02:00
|
|
|
|
2008-05-09 09:08:30 +02:00
|
|
|
**/
|
2007-07-04 12:51:54 +02:00
|
|
|
VOID
|
|
|
|
CoreFreePoolPages (
|
|
|
|
IN EFI_PHYSICAL_ADDRESS Memory,
|
|
|
|
IN UINTN NumberOfPages
|
2008-05-21 03:40:12 +02:00
|
|
|
);
|
2007-07-04 12:51:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2008-05-09 09:08:30 +02:00
|
|
|
/**
|
|
|
|
Internal function to allocate pool of a particular type.
|
|
|
|
Caller must have the memory lock held
|
2007-07-04 12:51:54 +02:00
|
|
|
|
2008-07-24 04:54:45 +02:00
|
|
|
@param PoolType Type of pool to allocate
|
|
|
|
@param Size The amount of pool to allocate
|
2007-07-04 12:51:54 +02:00
|
|
|
|
2008-05-09 09:08:30 +02:00
|
|
|
@return The allocate pool, or NULL
|
2007-07-04 12:51:54 +02:00
|
|
|
|
2008-05-09 09:08:30 +02:00
|
|
|
**/
|
2007-07-04 12:51:54 +02:00
|
|
|
VOID *
|
|
|
|
CoreAllocatePoolI (
|
|
|
|
IN EFI_MEMORY_TYPE PoolType,
|
|
|
|
IN UINTN Size
|
2008-05-21 03:40:12 +02:00
|
|
|
);
|
2007-07-04 12:51:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2008-05-09 09:08:30 +02:00
|
|
|
/**
|
|
|
|
Internal function to free a pool entry.
|
2007-07-04 12:51:54 +02:00
|
|
|
Caller must have the memory lock held
|
|
|
|
|
2008-07-24 04:54:45 +02:00
|
|
|
@param Buffer The allocated pool entry to free
|
2007-07-04 12:51:54 +02:00
|
|
|
|
2008-07-24 04:54:45 +02:00
|
|
|
@retval EFI_INVALID_PARAMETER Buffer not valid
|
2008-05-09 09:08:30 +02:00
|
|
|
@retval EFI_SUCCESS Buffer successfully freed.
|
2007-07-04 12:51:54 +02:00
|
|
|
|
2008-05-09 09:08:30 +02:00
|
|
|
**/
|
2007-07-04 12:51:54 +02:00
|
|
|
EFI_STATUS
|
|
|
|
CoreFreePoolI (
|
2008-05-21 03:40:12 +02:00
|
|
|
IN VOID *Buffer
|
|
|
|
);
|
2007-07-04 12:51:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2008-05-09 09:08:30 +02:00
|
|
|
/**
|
|
|
|
Enter critical section by gaining lock on gMemoryLock.
|
2007-07-04 12:51:54 +02:00
|
|
|
|
2008-05-09 09:08:30 +02:00
|
|
|
**/
|
2007-07-04 12:51:54 +02:00
|
|
|
VOID
|
|
|
|
CoreAcquireMemoryLock (
|
|
|
|
VOID
|
2008-05-21 03:40:12 +02:00
|
|
|
);
|
2007-07-04 12:51:54 +02:00
|
|
|
|
|
|
|
|
2008-05-09 09:08:30 +02:00
|
|
|
/**
|
|
|
|
Exit critical section by releasing lock on gMemoryLock.
|
2007-07-04 12:51:54 +02:00
|
|
|
|
2008-05-09 09:08:30 +02:00
|
|
|
**/
|
2007-07-04 12:51:54 +02:00
|
|
|
VOID
|
|
|
|
CoreReleaseMemoryLock (
|
|
|
|
VOID
|
2008-05-21 03:40:12 +02:00
|
|
|
);
|
2007-07-04 12:51:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Internal Global data
|
|
|
|
//
|
|
|
|
|
2008-07-24 04:54:45 +02:00
|
|
|
extern EFI_LOCK gMemoryLock;
|
2007-07-04 12:51:54 +02:00
|
|
|
extern LIST_ENTRY gMemoryMap;
|
|
|
|
extern LIST_ENTRY mGcdMemorySpaceMap;
|
|
|
|
#endif
|