2014-07-05 20:56:56 +08:00
|
|
|
/* EfiTianoDecompress.h
|
2013-10-08 15:07:03 +08:00
|
|
|
|
2014-07-05 20:56:56 +08:00
|
|
|
Copyright (c) 2014, Nikolaj Schlej. All rights reserved.<BR>
|
|
|
|
Copyright (c) 2004 - 2008, Intel Corporation. All rights reserved.<BR>
|
2013-10-08 15:07:03 +08:00
|
|
|
This program and the accompanying materials
|
|
|
|
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
|
2013-11-07 21:46:28 +08:00
|
|
|
|
2013-10-08 15:07:03 +08: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.
|
|
|
|
|
|
|
|
Module Name:
|
|
|
|
|
2014-07-05 20:56:56 +08:00
|
|
|
Decompress.h
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
Abstract:
|
|
|
|
|
2014-07-05 20:56:56 +08:00
|
|
|
Header file for decompression routine.
|
|
|
|
Providing both EFI and Tiano decompress algorithms.
|
2013-11-07 21:46:28 +08:00
|
|
|
|
2013-10-08 15:07:03 +08:00
|
|
|
--*/
|
|
|
|
|
|
|
|
#ifndef _EFITIANODECOMPRESS_H_
|
|
|
|
#define _EFITIANODECOMPRESS_H_
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "../basetypes.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2014-07-05 20:56:56 +08:00
|
|
|
|
2013-11-07 21:46:28 +08:00
|
|
|
typedef struct {
|
2013-12-05 04:27:12 +08:00
|
|
|
UINT32 CompSize;
|
|
|
|
UINT32 OrigSize;
|
2013-11-07 21:46:28 +08:00
|
|
|
} EFI_TIANO_HEADER;
|
2013-10-08 15:07:03 +08:00
|
|
|
|
2014-07-05 20:56:56 +08:00
|
|
|
EFI_STATUS
|
2013-10-08 15:07:03 +08:00
|
|
|
EFIAPI
|
2013-11-07 21:46:28 +08:00
|
|
|
EfiTianoGetInfo (
|
|
|
|
VOID *Source,
|
|
|
|
UINT32 SrcSize,
|
|
|
|
UINT32 *DstSize,
|
|
|
|
UINT32 *ScratchSize
|
|
|
|
)
|
2013-10-08 15:07:03 +08:00
|
|
|
/*++
|
|
|
|
|
|
|
|
Routine Description:
|
|
|
|
|
2014-02-02 20:26:33 +08:00
|
|
|
The implementation is same as that of EFI_DECOMPRESS_PROTOCOL.GetInfo().
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2013-11-07 21:46:28 +08:00
|
|
|
This - The protocol instance pointer
|
|
|
|
Source - The source buffer containing the compressed data.
|
|
|
|
SrcSize - The size of source buffer
|
|
|
|
DstSize - The size of destination buffer.
|
|
|
|
ScratchSize - The size of scratch buffer.
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
2014-02-02 20:26:33 +08:00
|
|
|
EFI_SUCCESS - The size of destination buffer and the size of scratch buffer are successfully retrieved.
|
2013-11-07 21:46:28 +08:00
|
|
|
EFI_INVALID_PARAMETER - The source data is corrupted
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
--*/
|
|
|
|
;
|
|
|
|
|
2014-07-05 20:56:56 +08:00
|
|
|
EFI_STATUS
|
2013-10-08 15:07:03 +08:00
|
|
|
EFIAPI
|
|
|
|
EfiDecompress (
|
2013-11-07 21:46:28 +08:00
|
|
|
VOID *Source,
|
|
|
|
UINT32 SrcSize,
|
|
|
|
VOID *Destination,
|
|
|
|
UINT32 DstSize,
|
|
|
|
VOID *Scratch,
|
|
|
|
UINT32 ScratchSize
|
|
|
|
)
|
2013-10-08 15:07:03 +08:00
|
|
|
/*++
|
|
|
|
|
|
|
|
Routine Description:
|
|
|
|
|
2013-11-07 21:46:28 +08:00
|
|
|
The implementation is same as that of EFI_DECOMPRESS_PROTOCOL.Decompress().
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2013-11-07 21:46:28 +08:00
|
|
|
This - The protocol instance pointer
|
|
|
|
Source - The source buffer containing the compressed data.
|
|
|
|
SrcSize - The size of source buffer
|
|
|
|
Destination - The destination buffer to store the decompressed data
|
|
|
|
DstSize - The size of destination buffer.
|
|
|
|
Scratch - The buffer used internally by the decompress routine. This buffer is needed to store intermediate data.
|
|
|
|
ScratchSize - The size of scratch buffer.
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
2014-02-02 20:26:33 +08:00
|
|
|
EFI_SUCCESS - Decompression is successful
|
2013-11-07 21:46:28 +08:00
|
|
|
EFI_INVALID_PARAMETER - The source data is corrupted
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
--*/
|
|
|
|
;
|
|
|
|
|
2014-07-05 20:56:56 +08:00
|
|
|
EFI_STATUS
|
2013-10-08 15:07:03 +08:00
|
|
|
EFIAPI
|
|
|
|
TianoDecompress (
|
2013-11-07 21:46:28 +08:00
|
|
|
VOID *Source,
|
|
|
|
UINT32 SrcSize,
|
|
|
|
VOID *Destination,
|
|
|
|
UINT32 DstSize,
|
|
|
|
VOID *Scratch,
|
|
|
|
UINT32 ScratchSize
|
|
|
|
)
|
2013-10-08 15:07:03 +08:00
|
|
|
/*++
|
|
|
|
|
|
|
|
Routine Description:
|
|
|
|
|
2013-11-07 21:46:28 +08:00
|
|
|
The implementation is same as that of EFI_TIANO_DECOMPRESS_PROTOCOL.Decompress().
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
2013-11-07 21:46:28 +08:00
|
|
|
This - The protocol instance pointer
|
|
|
|
Source - The source buffer containing the compressed data.
|
|
|
|
SrcSize - The size of source buffer
|
|
|
|
Destination - The destination buffer to store the decompressed data
|
|
|
|
DstSize - The size of destination buffer.
|
|
|
|
Scratch - The buffer used internally by the decompress routine. This buffer is needed to store intermediate data.
|
|
|
|
ScratchSize - The size of scratch buffer.
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
2014-02-02 20:26:33 +08:00
|
|
|
EFI_SUCCESS - Decompression is successful
|
2013-11-07 21:46:28 +08:00
|
|
|
EFI_INVALID_PARAMETER - The source data is corrupted
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
--*/
|
|
|
|
;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|