]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EdkModulePkg/Universal/GenericMemoryTest/Dxe/Common.h
Retiring the ANT/JAVA build and removing the older EDK II packages that required...
[mirror_edk2.git] / EdkModulePkg / Universal / GenericMemoryTest / Dxe / Common.h
diff --git a/EdkModulePkg/Universal/GenericMemoryTest/Dxe/Common.h b/EdkModulePkg/Universal/GenericMemoryTest/Dxe/Common.h
deleted file mode 100644 (file)
index 7a1ab78..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-/*++\r
-\r
-Copyright (c) 2006, 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:\r
-  \r
-    Common.h\r
-  \r
-Abstract:\r
-  The generic memory test driver definition\r
-\r
---*/\r
-\r
-#ifndef _COMMON_H\r
-#define _COMMON_H\r
-\r
-//\r
-// Some global define\r
-//\r
-#define GENERIC_CACHELINE_SIZE  0x40\r
-\r
-//\r
-// The SPARSE_SPAN_SIZE size can not small then the MonoTestSize\r
-//\r
-#define TEST_BLOCK_SIZE   0x2000000\r
-#define QUICK_SPAN_SIZE   (TEST_BLOCK_SIZE >> 2)\r
-#define SPARSE_SPAN_SIZE  (TEST_BLOCK_SIZE >> 4)\r
-\r
-//\r
-// This structure records every nontested memory range parsed through GCD\r
-// service.\r
-//\r
-#define EFI_NONTESTED_MEMORY_RANGE_SIGNATURE  EFI_SIGNATURE_32 ('N', 'T', 'M', 'E')\r
-typedef struct {\r
-  UINTN                 Signature;\r
-  LIST_ENTRY            Link;\r
-  EFI_PHYSICAL_ADDRESS  StartAddress;\r
-  UINT64                Length;\r
-  UINT64                Capabilities;\r
-  BOOLEAN               Above4G;\r
-  BOOLEAN               AlreadyMapped;\r
-} NONTESTED_MEMORY_RANGE;\r
-\r
-#define NONTESTED_MEMORY_RANGE_FROM_LINK(link) \\r
-        CR(link, NONTESTED_MEMORY_RANGE, Link, EFI_NONTESTED_MEMORY_RANGE_SIGNATURE)\r
-\r
-//\r
-// This is the memory test driver's structure definition\r
-//\r
-#define EFI_GENERIC_MEMORY_TEST_PRIVATE_SIGNATURE EFI_SIGNATURE_32 ('G', 'E', 'M', 'T')\r
-\r
-#endif\r