]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Ppi/Decompress.h
Rename EFI_PEI_PCI_CFG_PPI_IO to EFI_PEI_PCI_CFG2_PPI_IO to avoid collision with...
[mirror_edk2.git] / MdePkg / Include / Ppi / Decompress.h
1 /* @file
2 Provides decompression services to the PEI Foundatoin.
3
4 Copyright (c) 2006, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 @par Revision Reference:
14 This PPI is defined in PI Version 1.00.
15
16 **/
17
18 #ifndef __DECOMPRESS_PPI_H__
19 #define __DECOMPRESS_PPI_H__
20
21 #define EFI_PEI_DECOMPRESS_PPI_GUID \
22 { 0x1a36e4e7, 0xfab6, 0x476a, { 0x8e, 0x75, 0x69, 0x5a, 0x5, 0x76, 0xfd, 0xd7 } }
23
24 typedef struct _EFI_PEI_DECOMPRESS_PPI EFI_PEI_DECOMPRESS_PPI;;
25
26 /**
27 Decompresses the data in a compressed section and returns it
28 as a series of standard PI Firmware File Sections. The
29 required memory is allocated from permanent memory.
30
31 @param This Points to this instance of the
32 EFI_PEI_DECOMPRESS_PEI PPI. InputSection Points to
33 the compressed section.
34
35 @param OutputBuffer Holds the returned pointer to the
36 decompressed sections.
37
38 @param OutputSize Holds the returned size of the decompress
39 section streams.
40
41 @retval EFI_SUCCESS The section was decompressed
42 successfully. OutputBuffer contains the
43 resulting data and OutputSize contains
44 the resulting size.
45
46 @retval EFI_OUT_OF_RESOURCES Unable to allocate sufficient
47 memory to hold the decompressed data.
48
49 @retval EFI_UNSUPPORTED The compression type specified
50 in the compression header is unsupported.
51 **/
52 typedef
53 EFI_STATUS
54 (EFIAPI *EFI_PEI_DECOMPRESS_DECOMPRESS)(
55 IN CONST EFI_PEI_DECOMPRESS_PPI *This,
56 IN CONST EFI_COMPRESSION_SECTION *InputSection,
57 OUT VOID **OutputBuffer,
58 OUT UINTN *OutputSize
59 );
60
61
62 /**
63 This PPI¡¯s single member function decompresses a compression
64 encapsulated section. It is used by the PEI Foundation to
65 process sectioned files. Prior to the installation of this PPI,
66 compression sections will be ignored.
67
68 @param Decompress Decompress a single compression section in
69 a firmware file.
70 **/
71 struct _EFI_PEI_DECOMPRESS_PPI {
72 EFI_PEI_DECOMPRESS_DECOMPRESS Decompress;
73 };
74
75
76 extern EFI_GUID gEfiPeiDecompressPpiGuid;
77
78 #endif