]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Library/ResourcePublicationLib.h
Synchronization of MDE Library Spec., Mde.dec, and corresponding head files in MdePkg...
[mirror_edk2.git] / MdePkg / Include / Library / ResourcePublicationLib.h
CommitLineData
fb3df220 1/** @file\r
50a64e5b 2 Provides a service to publish discovered system resources.\r
fb3df220 3\r
50a64e5b 4Copyright (c) 2006 - 2008, Intel Corporation\r
5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
fb3df220 9\r
50a64e5b 10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
fb3df220 12\r
fb3df220 13**/\r
14\r
15#ifndef __RESOURCE_PUBLICATION_LIB__\r
16#define __RESOURCE_PUBLICATION_LIB__\r
17\r
18/**\r
19 \r
20 Declares the presence of permanent system memory in the platform.\r
21\r
22 Declares that the system memory buffer specified by MemoryBegin and MemoryLength\r
23 as permanent memory that may be used for general purpose use by software.\r
24 The amount of memory available to software may be less than MemoryLength\r
25 if published memory has alignment restrictions. \r
26\r
27 @param MemoryBegin The start address of the memory being declared.\r
28 @param MemoryLength The number of bytes of memory being declared.\r
29\r
30 @retval RETURN_SUCCESS The memory buffer was published.\r
31 @retval RETURN_OUT_OF_RESOURCES There are not enough resources to publish the memory buffer\r
32\r
33**/\r
34RETURN_STATUS\r
35EFIAPI\r
36PublishSystemMemory (\r
37 IN PHYSICAL_ADDRESS MemoryBegin,\r
38 IN UINT64 MemoryLength\r
ed66e1bc 39 );\r
fb3df220 40\r
41#endif\r