]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Uefi/UefiGpt.h
Move to directory "Include"
[mirror_edk2.git] / MdePkg / Include / Uefi / UefiGpt.h
diff --git a/MdePkg/Include/Uefi/UefiGpt.h b/MdePkg/Include/Uefi/UefiGpt.h
new file mode 100644 (file)
index 0000000..e8bc1ca
--- /dev/null
@@ -0,0 +1,67 @@
+/* @file\r
+  EFI Guid Partition Table Format Definition.\r
+\r
+  Copyright (c) 2006 - 2007, Intel Corporation\r
+  All rights reserved. This program and the accompanying materials\r
+  are licensed and made available under the terms and conditions of the BSD License\r
+  which accompanies this distribution.  The full text of the license may be found at\r
+  http://opensource.org/licenses/bsd-license.php\r
+\r
+  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+\r
+  Module Name:    UefiGpt.h\r
+\r
+**/\r
+\r
+#ifndef __UEFI_GPT_H__\r
+#define __UEFI_GPT_H__\r
+\r
+#define PRIMARY_PART_HEADER_LBA 1\r
+\r
+//\r
+// EFI Partition Table Signature: "EFI PART"\r
+// \r
+#define EFI_PTAB_HEADER_ID      0x5452415020494645ULL\r
+\r
+#pragma pack(1)\r
+//\r
+// GPT Partition Table Header\r
+//\r
+typedef struct {\r
+  EFI_TABLE_HEADER  Header;\r
+  EFI_LBA           MyLBA;\r
+  EFI_LBA           AlternateLBA;\r
+  EFI_LBA           FirstUsableLBA;\r
+  EFI_LBA           LastUsableLBA;\r
+  EFI_GUID          DiskGUID;\r
+  EFI_LBA           PartitionEntryLBA;\r
+  UINT32            NumberOfPartitionEntries;\r
+  UINT32            SizeOfPartitionEntry;\r
+  UINT32            PartitionEntryArrayCRC32;\r
+} EFI_PARTITION_TABLE_HEADER;\r
+\r
+//\r
+// GPT Partition Entry\r
+//\r
+typedef struct {\r
+  EFI_GUID  PartitionTypeGUID;\r
+  EFI_GUID  UniquePartitionGUID;\r
+  EFI_LBA   StartingLBA;\r
+  EFI_LBA   EndingLBA;\r
+  UINT64    Attributes;\r
+  CHAR16    PartitionName[36];\r
+} EFI_PARTITION_ENTRY;\r
+\r
+//\r
+// GPT Partition Entry Status\r
+//\r
+typedef struct {\r
+  BOOLEAN OutOfRange;\r
+  BOOLEAN Overlap;\r
+} EFI_PARTITION_ENTRY_STATUS;\r
+\r
+#pragma pack()\r
+#endif\r
+\r
+\r