[haiku-commits] haiku: hrev53903 - src/system/boot/platform/efi src/system/boot/platform/efi/arch/x86_64 src/system/boot/platform/efi/arch/riscv64 src/system/boot/platform/efi/arch/arm headers/private/kernel/boot/platform/efi

  • From: Alex von Gluck IV <kallisti5@xxxxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 22 Feb 2020 17:15:13 -0500 (EST)

hrev53903 adds 1 changeset to branch 'master'
old head: d2986cb6d05cd2ed7f7e613b69c64b1625c76a43
new head: 71680f7b7dc396eafffe97cb89963391979c4607
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=71680f7b7dc3+%5Ed2986cb6d05c

----------------------------------------------------------------------------

71680f7b7dc3: efi: Cleanup arch_mmu, drop extra arch_timer.h
  
  Change-Id: I0d6d2f8db2bc86c08d5ba2648f1cf46d85b54a5e
  Reviewed-on: https://review.haiku-os.org/c/haiku/+/2267
  Reviewed-by: Adrien Destugues <pulkomandy@xxxxxxxxx>
  Reviewed-by: Alex von Gluck IV <kallisti5@xxxxxxxxxxx>

                          [ Alexander von Gluck IV <kallisti5@xxxxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev53903
Commit:      71680f7b7dc396eafffe97cb89963391979c4607
URL:         https://git.haiku-os.org/haiku/commit/?id=71680f7b7dc3
Author:      Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date:        Sat Feb 22 15:02:37 2020 UTC
Committer:   Alex von Gluck IV <kallisti5@xxxxxxxxxxx>
Commit-Date: Sat Feb 22 22:15:08 2020 UTC

----------------------------------------------------------------------------

6 files changed, 20 insertions(+), 54 deletions(-)
.../private/kernel/boot/platform/efi/arch_mmu.h  | 10 ++++++++++
.../boot/platform/efi/arch/arm/arch_timer.h      | 21 --------------------
.../boot/platform/efi/arch/riscv64/arch_timer.h  | 21 --------------------
.../boot/platform/efi/arch/x86_64/arch_start.cpp |  9 +++++++++
src/system/boot/platform/efi/mmu.h               | 12 -----------
src/system/boot/platform/efi/start.cpp           |  1 +

----------------------------------------------------------------------------

diff --git a/headers/private/kernel/boot/platform/efi/arch_mmu.h 
b/headers/private/kernel/boot/platform/efi/arch_mmu.h
new file mode 100644
index 0000000000..fadce0d122
--- /dev/null
+++ b/headers/private/kernel/boot/platform/efi/arch_mmu.h
@@ -0,0 +1,10 @@
+/*
+ * Copyright, 2019-2020 Haiku, Inc. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+#ifndef ARCH_MMU_H
+#define ARCH_MMU_H
+
+void arch_mmu_init();
+
+#endif /* ARCH_MMU_H */
diff --git a/src/system/boot/platform/efi/arch/arm/arch_timer.h 
b/src/system/boot/platform/efi/arch/arm/arch_timer.h
deleted file mode 100644
index bfe3e9b4dd..0000000000
--- a/src/system/boot/platform/efi/arch/arm/arch_timer.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Copyright 2008, Dustin Howett, dustin.howett@xxxxxxxxx. All rights reserved.
- * Distributed under the terms of the MIT License.
- */
-#ifndef HPET_H
-#define HPET_H
-
-#include <SupportDefs.h>
-#include <arch/x86/arch_hpet.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-void arch_timer_init(void);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* HPET_H */
diff --git a/src/system/boot/platform/efi/arch/riscv64/arch_timer.h 
b/src/system/boot/platform/efi/arch/riscv64/arch_timer.h
deleted file mode 100644
index bfe3e9b4dd..0000000000
--- a/src/system/boot/platform/efi/arch/riscv64/arch_timer.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Copyright 2008, Dustin Howett, dustin.howett@xxxxxxxxx. All rights reserved.
- * Distributed under the terms of the MIT License.
- */
-#ifndef HPET_H
-#define HPET_H
-
-#include <SupportDefs.h>
-#include <arch/x86/arch_hpet.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-void arch_timer_init(void);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* HPET_H */
diff --git a/src/system/boot/platform/efi/arch/x86_64/arch_start.cpp 
b/src/system/boot/platform/efi/arch/x86_64/arch_start.cpp
index ad1f9984d3..01388634d9 100644
--- a/src/system/boot/platform/efi/arch/x86_64/arch_start.cpp
+++ b/src/system/boot/platform/efi/arch/x86_64/arch_start.cpp
@@ -24,6 +24,15 @@
 extern "C" void arch_enter_kernel(uint64 pml4, uint64 entry_point,
        uint64 stackTop);
 
+// From arch_mmu.cpp
+extern void arch_mmu_post_efi_setup(size_t memory_map_size,
+    efi_memory_descriptor *memory_map, size_t descriptor_size,
+    uint32_t descriptor_version);
+
+extern uint64_t arch_mmu_generate_post_efi_page_tables(size_t memory_map_size,
+    efi_memory_descriptor *memory_map, size_t descriptor_size,
+    uint32_t descriptor_version);
+
 
 void
 arch_start_kernel(addr_t kernelEntry)
diff --git a/src/system/boot/platform/efi/mmu.h 
b/src/system/boot/platform/efi/mmu.h
index a222955ae4..a7e5d8311e 100644
--- a/src/system/boot/platform/efi/mmu.h
+++ b/src/system/boot/platform/efi/mmu.h
@@ -47,18 +47,6 @@ extern status_t 
platform_kernel_address_to_bootloader_address(uint64_t address,
 extern status_t platform_bootloader_address_to_kernel_address(void *address,
        uint64_t *_result);
 
-// Architecture dependant
-
-extern void arch_mmu_post_efi_setup(size_t memory_map_size,
-    efi_memory_descriptor *memory_map, size_t descriptor_size,
-    uint32_t descriptor_version);
-
-extern uint64_t arch_mmu_generate_post_efi_page_tables(size_t memory_map_size,
-    efi_memory_descriptor *memory_map, size_t descriptor_size,
-    uint32_t descriptor_version);
-
-void arch_mmu_init();
-
 #ifdef __cplusplus
 }
 #endif
diff --git a/src/system/boot/platform/efi/start.cpp 
b/src/system/boot/platform/efi/start.cpp
index ac4b48d4d5..b420ae037d 100644
--- a/src/system/boot/platform/efi/start.cpp
+++ b/src/system/boot/platform/efi/start.cpp
@@ -19,6 +19,7 @@
 #include <boot/stage2.h>
 #include <boot/stdio.h>
 
+#include "arch_mmu.h"
 #include "arch_start.h"
 #include "acpi.h"
 #include "console.h"


Other related posts:

  • » [haiku-commits] haiku: hrev53903 - src/system/boot/platform/efi src/system/boot/platform/efi/arch/x86_64 src/system/boot/platform/efi/arch/riscv64 src/system/boot/platform/efi/arch/arm headers/private/kernel/boot/platform/efi - Alex von Gluck IV