]> git.proxmox.com Git - mirror_edk2.git/blame - EdkCompatibilityPkg/Foundation/Framework/Include/TianoSpecTypes.h
Update the copyright notice format
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Framework / Include / TianoSpecTypes.h
CommitLineData
3eb9473e 1/*++\r
2\r
f57387d5
HT
3Copyright (c) 2004 - 2006, Intel Corporation. All rights reserved.<BR>\r
4This program and the accompanying materials \r
3eb9473e 5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name:\r
13\r
14 TianoSpecTypes.h\r
15\r
16Abstract:\r
17\r
18 Tiano types defined in Tiano spec.\r
19\r
20--*/\r
21\r
22#ifndef _TIANO_SPEC_TYPES_H_\r
23#define _TIANO_SPEC_TYPES_H_\r
24\r
25//\r
26// Modifier for EFI DXE Services\r
27//\r
28#define EFI_DXESERVICE\r
29\r
30//\r
31// Global Coherencey Domain types\r
32//\r
33typedef enum {\r
34 EfiGcdMemoryTypeNonExistent,\r
35 EfiGcdMemoryTypeReserved,\r
36 EfiGcdMemoryTypeSystemMemory,\r
37 EfiGcdMemoryTypeMemoryMappedIo,\r
38 EfiGcdMemoryTypeMaximum\r
39} EFI_GCD_MEMORY_TYPE;\r
40\r
41typedef enum {\r
42 EfiGcdIoTypeNonExistent,\r
43 EfiGcdIoTypeReserved,\r
44 EfiGcdIoTypeIo,\r
45 EfiGcdIoTypeMaximum\r
46} EFI_GCD_IO_TYPE;\r
47\r
48typedef enum {\r
49 EfiGcdAllocateAnySearchBottomUp,\r
50 EfiGcdAllocateMaxAddressSearchBottomUp,\r
51 EfiGcdAllocateAddress,\r
52 EfiGcdAllocateAnySearchTopDown,\r
53 EfiGcdAllocateMaxAddressSearchTopDown,\r
54 EfiGcdMaxAllocateType\r
55} EFI_GCD_ALLOCATE_TYPE;\r
56\r
57typedef struct {\r
58 EFI_PHYSICAL_ADDRESS BaseAddress;\r
59 UINT64 Length;\r
60 UINT64 Capabilities;\r
61 UINT64 Attributes;\r
62 EFI_GCD_MEMORY_TYPE GcdMemoryType;\r
63 EFI_HANDLE ImageHandle;\r
64 EFI_HANDLE DeviceHandle;\r
65} EFI_GCD_MEMORY_SPACE_DESCRIPTOR;\r
66\r
67typedef struct {\r
68 EFI_PHYSICAL_ADDRESS BaseAddress;\r
69 UINT64 Length;\r
70 EFI_GCD_IO_TYPE GcdIoType;\r
71 EFI_HANDLE ImageHandle;\r
72 EFI_HANDLE DeviceHandle;\r
73} EFI_GCD_IO_SPACE_DESCRIPTOR;\r
74\r
75#endif\r