]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Updating ArmLib.h to add functions needed to turn on paging in CpuDxe. Also added...
authorAJFISH <AJFISH@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 12 Jan 2010 18:49:41 +0000 (18:49 +0000)
committerAJFISH <AJFISH@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 12 Jan 2010 18:49:41 +0000 (18:49 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9717 6f19259b-4bc3-4df7-8a09-765794883524

ArmPkg/Include/Library/ArmLib.h
ArmPkg/Include/Protocol/VirtualUncachedPages.h [new file with mode: 0644]

index d68b334e2aab32c7bfc96b59442e4672a7c02011..5cadb3c42ad506dbd1cb43ed50601c3779dc4c76 100644 (file)
@@ -151,6 +151,7 @@ ArmInvalidateDataCache (
   VOID
   );
 
+
 VOID
 EFIAPI
 ArmCleanInvalidateDataCache (
@@ -259,6 +260,11 @@ ArmSetTranslationTableBaseAddress (
   IN  VOID  *TranslationTableBase
   );
 
+VOID *
+EFIAPI
+ArmGetTranslationTableBaseAddress (
+  );
+
 VOID
 EFIAPI
 ArmConfigureMmu (
@@ -267,6 +273,12 @@ ArmConfigureMmu (
   OUT UINTN                         *TranslationTableSize  OPTIONAL
   );
   
+BOOLEAN
+EFIAPI
+ArmMmuEnabled (
+  VOID
+  );
+  
 VOID
 EFIAPI
 ArmSwitchProcessorMode (
diff --git a/ArmPkg/Include/Protocol/VirtualUncachedPages.h b/ArmPkg/Include/Protocol/VirtualUncachedPages.h
new file mode 100644 (file)
index 0000000..32deec2
--- /dev/null
@@ -0,0 +1,60 @@
+/** @file\r
+\r
+  Copyright (c) 2008-2010 Apple Inc. All rights reserved.<BR>\r
+\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
+**/\r
+\r
+#ifndef __VIRTUAL_UNCACHED_PAGES_ROTOCOL_H__\r
+#define __VIRTUAL_UNCACHED_PAGES_ROTOCOL_H__\r
+\r
+//\r
+// Protocol GUID\r
+//\r
+#define VIRTUAL_UNCACHED_PAGES_PROTOCOL_GUID { 0xAD651C7D, 0x3C22, 0x4DBF, { 0x92, 0xe8, 0x38, 0xa7, 0xcd, 0xae, 0x87, 0xb2 } }\r
+\r
+\r
+\r
+//\r
+// Protocol interface structure\r
+//\r
+typedef struct _VIRTUAL_UNCACHED_PAGES_PROTOCOL  VIRTUAL_UNCACHED_PAGES_PROTOCOL;\r
+\r
+\r
+typedef\r
+EFI_STATUS\r
+(EFIAPI *CONVERT_PAGES_TO_UNCACHED_VIRTUAL_ADDRESS) (\r
+  IN  VIRTUAL_UNCACHED_PAGES_PROTOCOL   *This,\r
+  IN  EFI_PHYSICAL_ADDRESS              Address,\r
+  IN  UINTN                             Length,\r
+  IN  EFI_PHYSICAL_ADDRESS              VirtualMask,\r
+  OUT UINT64                            *Attributes     OPTIONAL\r
+  );\r
+  \r
+typedef\r
+EFI_STATUS\r
+(EFIAPI *FREE_CONVERTED_PAGES) (\r
+  IN  VIRTUAL_UNCACHED_PAGES_PROTOCOL   *This,\r
+  IN  EFI_PHYSICAL_ADDRESS              Address,\r
+  IN  UINTN                             Length,\r
+  IN  EFI_PHYSICAL_ADDRESS              VirtualMask,\r
+  IN  UINT64                            Attributes\r
+  );\r
+\r
+\r
+\r
+struct _VIRTUAL_UNCACHED_PAGES_PROTOCOL {\r
+  CONVERT_PAGES_TO_UNCACHED_VIRTUAL_ADDRESS  ConvertPages;\r
+  FREE_CONVERTED_PAGES                       FreeConvertedPages;\r
+};\r
+\r
+extern EFI_GUID gVirtualUncachedPagesProtocolGuid;\r
+\r
+#endif 
\ No newline at end of file