blob: e16f90ada29c526a0290f8ca8bad90aaf108efcd (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
//**********************************************************************
//**********************************************************************
//** **
//** (C)Copyright 1985-2009, American Megatrends, Inc. **
//** **
//** All Rights Reserved. **
//** **
//** 5555 Oakbrook Pkwy, Norcross, GA 30093 **
//** **
//** Phone: (770)-246-8600 **
//** **
//**********************************************************************
//**********************************************************************
//**********************************************************************//
// $Header: /Alaska/BIN/Modules/ACPI/Template/Board/OEM_ACPI.H 3 3/26/09 4:47p Oleksiyy $
//
// $Revision: 3 $
//
// $Date: 3/26/09 4:47p $
//**********************************************************************//
// Revision History
// ----------------
// $Log: /Alaska/BIN/Modules/ACPI/Template/Board/OEM_ACPI.H $
//
// 3 3/26/09 4:47p Oleksiyy
// New ACPI Core realization - improves logic, execution time and memory
// usage of ACPI module.
//
// 1 2/18/09 3:50p Oleksiyy
//
// 2 1/12/09 11:43a Yakovlevs
// OemAcpiSetPlatformId function Definition added.
//
// 1 3/24/05 5:00p Sivagarn
// Initial Checkin
//
// 1 2/03/05 6:41p Sivagarn
// 0ABHI001 Check in
//
// 3 1/19/05 7:25p Yakovlevs
//
// 2 7/27/04 6:45p Yakovlevs
//
// 1 4/08/04 3:29p Yakovlevs
//
// 2 9/21/01 3:32p Yakovlevs
// Code cleanup
//
//**********************************************************************
//<AMI_FHDR_START>
//
// Name: OEM_ACPI.H
//
// Description: OEM specific Definitions in ACPI Module
//
//<AMI_FHDR_END>
//**********************************************************************
//**********************************************************************//
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! //
// !!!!! When porting, should specify proper values here !!!!!! //
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! //
//**********************************************************************//
#ifndef _ACPIOEM_H //To Avoid this header get compiled twice
#define _ACPIOEM_H
#include <Efi.h>
#include <ACPI.h>
//**********************************************************************//
//Function Prototypes
EFI_STATUS OemAcpiSetPlatformId(IN OUT ACPI_HDR *AcpiHdr);
#endif
//**********************************************************************
//**********************************************************************
//** **
//** (C)Copyright 1985-2009, American Megatrends, Inc. **
//** **
//** All Rights Reserved. **
//** **
//** 5555 Oakbrook Pkwy, Norcross, GA 30093 **
//** **
//** Phone: (770)-246-8600 **
//** **
//**********************************************************************
//**********************************************************************
|