blob: a6ee93f167393f1b4f3bc063d31f16e52cd1ee32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/** @file
Platform CSM Support Library
Copyright (c) 2008 - 2011, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef _CSM_SUPPORT_LIB_H_
#define _CSM_SUPPORT_LIB_H_
#include <Uefi.h>
/**
Initialize Legacy Region support
@retval EFI_SUCCESS Successfully initialized
**/
EFI_STATUS
LegacyRegionInit (
VOID
);
/**
Initialize Legacy Interrupt support
@retval EFI_SUCCESS Successfully initialized
**/
EFI_STATUS
LegacyInterruptInstall (
VOID
);
/**
Initialize Legacy Platform support
@retval EFI_SUCCESS Successfully initialized
**/
EFI_STATUS
LegacyBiosPlatformInstall (
VOID
);
#endif
|